0
CHOICE option appended to a TEXT field
Example: the text "Hello" is entered into a TEXT field. The options under a CHOICE field are " World" and " Earth". In this case "World" is selected. On update the CHOICE selection is appended to the TEXT field which now reads "Hello World".
Help please?
Thank you!
1 reply
-
Put this in the trigger after update in the Choice field.
let prevTEXT := Text;
let txtChoice := text(Choice);
Text := prevTEXT + " " + txtChoiceSteven
Content aside
- 5 yrs agoLast active
- 1Replies
- 1251Views