FORMULA LANGUAGE
Examples: @Set
1. This formula determines whether the FirstName field is blank. If so, it sets the variable FullName to the concatenation of the Title field with the LastName field, as in "Ms. Tsen." If the FirstName field contains a value, the variable FullName is instead set to the concatenation of the FirstName with the LastName, as in "Mary Tsen."
Full Name:="";
@If(FirstName=""; @Set("FullName"; Title + " " + LastName); @Set("FullName"; FirstName + " " + LastName))
2. This example assigns FirstName and LastName to the first two elements of a list named FullName.
FirstName := "Foo";
LastName := "Bar";
@Set("FullName"; FirstName : LastName)
Vedere anche
@Set
Glossario
Guida sulla Guida
Contenuto completo della Guida
Glossario