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.
Views
Replies
Total Likes
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"
endif
endif
Views
Replies
Total Likes
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"
endif
endif
Views
Replies
Total Likes
Thanks for the help
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies