I have a report where I'm trying to list out last names if a variable in one field is met.
The IIf function statement is as follows in the "report footer" section of the report:
=IIf([Fri1]="ST1",[Last Name],"")
What I'm attempting to get is... If "ST1" is an entry in the [Fri1] field, then list all the last names ([Last Name] is the field of last names) showing a ST1 entry, else "" (don't list anything).
The IIf expression doesn't error out; however, I get nothing listed.
Any suggestions?
Thank You