Notifications
Clear all
Topic starter
I have 3 dropdowns that together make up a range. I then have a paragraph that I would like these dropdowns to update based on the range selected. Paragraph goes something like this.
Post-Operative diagnosis of L - L - S is
The 3 dropdowns should define the ranges for L - L - S. So when I choose a number from the dropdowns, it should make the paragraph read something like this
Post-Operative diagnosis of L1 - L3 - S1 is
Looking for a way to get this done.
Thanks!
Posted : May 31, 2012 6:04 am
Store your dropdowns into document variables, for ex MYVAR1, MYVAR2, and MYVAR3.
For the translation text on one of them, use:
{"Post-Operative diagnosis of L"+DOCUMENT.MYVAR1+" - L"+DOCUMENT.MYVAR2+" - S"+DOCUMENT.MYVAR3+" is"}
Posted : June 7, 2012 3:18 am