Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
If "age" is greater than 17 and "relationship" is also one of several other options such as son or daughter, i would like a subform to appear. java or formcalc will be fine. Thanks for any help.
Solved! Go to Solution.
Hi,
the FormCalc script could look like:
if (Age gt 17) then if (relationship eq "son" or relationship eq "daughter") then subform.presence = "visible" else subform.presence = "invisible" endifendif
if (Age gt 17) then
if (relationship eq "son" or relationship eq "daughter") then
subform.presence = "visible"
else
subform.presence = "invisible"
endif
View solution in original post
Thanks for the help
Views
Likes
Replies