I have a survey setup to:
1. ask for a address
2. ask if the address is the same as the mailing address - which is 'yes' or 'no'
If 'no' then a 3rd question opens asking for the mailing address.
What if I wanted it to auto add the address to the mailing address if they answered 'yes' but be blank if they answered 'no'?
I added the ${address} to the mailing address calculation and it copies it, but it also does it if they answer 'no'. Can it automatically be made blank if they answer 'no'?
I used the body::esri:visible column to only display the question if they answer no. That seemed to work better than in relevant.
Thanks for any suggestions!
Solved! Go to Solution.
A simple if else statement should work in the Mailing Address calculation column ie if(${IsMailingAddess} ='Yes', ${address}, "")
A simple if else statement should work in the Mailing Address calculation column ie if(${IsMailingAddess} ='Yes', ${address}, "")
Thank you! I though it would be an if statement. Everything I tried was incorrect.