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

null
    • Ninox partner
    • RoSoft_Steven.1
    • 5 yrs ago
    • Reported - view

    Put this in the trigger after update in the Choice field.

    let prevTEXT := Text;
    let txtChoice := text(Choice);
    Text := prevTEXT + " " + txtChoice

    Steven

Content aside

  • 5 yrs agoLast active
  • 1Replies
  • 1249Views