Skip to main content
Inspiring
February 2, 2026
Question

WHATEVER TEXT BOX IS *NOT* BLANK, POPULATE THAT DATA INTO ANOTHER TEXT BOX

  • February 2, 2026
  • 1 reply
  • 17 views

If out of Text1 and Text2, Text1 is blank and Text2 has text, then Text3 will populate whatever is in Text2, and vice versa for Text1.

 

Text1 and Text2 will never both contain text or data at the same time.

    1 reply

    try67
    Community Expert
    Community Expert
    February 3, 2026

    As the calculation script of Text3 enter:

    event.value = this.getField("Text1").valueAsString + this.getField("Text2").valueAsString;