I need help suppressing a detail section. I want the section to suppress when it doesn’t have 1 of 3 answers. The field I’m working with has multiple responses separated by an “&” so typical answers are
mother&emergency contact&guardian
father&co-guardian
brother/sister&emergency contact
I want to keep the records on the report if they have a guardian so the first and second records would appear on the report but the 3rd record would drop off.
I wrote this:
(InStr({Significant_Other_Info.Relationship_Value},"*Guardian*")= 0) or
(InSTr({Significant_Other_Info.Relationship_Value},"*Co-Guardian*")= 0) or
(InStr({Significant_Other_Info.Relationship_Value},"*Plenary Guardian*")= 0)
but everything is getting surpressed.
mother&emergency contact&guardian
father&co-guardian
brother/sister&emergency contact
I want to keep the records on the report if they have a guardian so the first and second records would appear on the report but the 3rd record would drop off.
I wrote this:
(InStr({Significant_Other_Info.Relationship_Value},"*Guardian*")= 0) or
(InSTr({Significant_Other_Info.Relationship_Value},"*Co-Guardian*")= 0) or
(InStr({Significant_Other_Info.Relationship_Value},"*Plenary Guardian*")= 0)
but everything is getting surpressed.