Copy link to clipboard
Copied
Hi
I hope you can help me I have two fields. The first is called 'Bupa' and it has a Yes or No drop down options. If the user selects Yes I need another text field called 'Informed' to autopopulate with phrase 'Please inform Clare'.
Any suggestions?
Thanks in advance
In the "Informed" field as custom calculation script use this code:
event.value = this.getField("Bupa").valueAsString == "Yes" ? "Please inform Clare" : "";
Copy link to clipboard
Copied
In the "Informed" field as custom calculation script use this code:
event.value = this.getField("Bupa").valueAsString == "Yes" ? "Please inform Clare" : "";
Copy link to clipboard
Copied
That perfect Nesa. Thank you soo much. Have a good day!