2018/4/5 Created.
If the field such as a dialog list or radio button is designed to select a keyword with an alias, the field is stored the alias value.
Therefore, if you select the appropriate "Field Name" in the "Displayed Field" section of the smaconne Form Configuration document, the stored alias value in the field will be displayed.
If you want to display the selected displayed value (keyword) in Notes instead of alias value, enter the formula to display the keyword that is not alias value in the "Formula" field in the "Displayed Field" section of the Form Configuration document. Be careful not to specify anything in the "Field Name".
The code of the formula is basically the same as what would be written to display the keywords of the corresponding field in a view column.
See the example below.
Selections of the field (fd03) in which the radio button
Item1 | 1
Item2 | 2
Item3 | 3
"Displayed Field" of Form Configuration document of smaconne
- Label Name: (Optional)
- Field Name: (Empty)
- Formula: (Following formula)
@If(
fd03 = "1"; "Item1";
fd03 = "2"; "Item2";
fd03 = "3"; "Item3";
""
)
