Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Simplified Field Notation using Text

New Here ,
Feb 09, 2023 Feb 09, 2023

I have 3 drop down box fields called "AllOther", "Lightweight" and ModulaPlastic".  I want to display the text from each of the drop down boxes in one text field using Simplified Field Notation.  The format I actuallly want to use is as follows:

"AllOther" : "Ligthweight" : "Modular Plastic"

adding the colon sign and spaces before the colon and after.

 

Any suggestions?  I'm running out of patience

TOPICS
How to , JavaScript , PDF forms
389
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 09, 2023 Feb 09, 2023
LATEST

Use this as the custom Calculation script:

 

event.value = this.getField("AllOther").valueAsString + " : " + this.getField("Ligthweight").valueAsString + " : " + this.getField("Modular Plastic").valueAsString;

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines