Skip to main content
Participant
May 2, 2024
Question

This should be simple but I can't find it...

  • May 2, 2024
  • 1 reply
  • 333 views

I have a form I'm sending to clients that want to sign a contract with us and one of my questions is if they were referred by someone.

If no, nothing

If yes, "show" the text box for them to fill in the referral

 

TIA,

This topic has been closed for replies.

1 reply

Nesa Nurani
Community Expert
Community Expert
May 2, 2024

Let's say checkbox name is "Check Box1" (change it to your actual name) and that checkbox export value is "Yes", use this as custom calculation script of that field you wish to show/hide:

event.target.display = (this.getField("Check Box1").value == "Yes") ? display.visible : display.hidden;