Answered
Hidden/Visible text based on dropdown
I require code to show text whether Yes or No or 'Blank' is selected in a dropdown
if DS PSV = Yes then Text11 visible
if DS PSV = No or 'blank' then Text11 hidden

I require code to show text whether Yes or No or 'Blank' is selected in a dropdown
if DS PSV = Yes then Text11 visible
if DS PSV = No or 'blank' then Text11 hidden

As the custom Calculation script of that text field enter this:
event.target.display = (this.getField("DS PSV").valueAsString=="Yes") ? display.visible : display.hidden;
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.