Hello!
Hoping that someone can help me with this. I need an Iif statement that will return a 1 if “NO” is found in any of these fields :EL1a, CA1a, RD11a, CD15a, or PF7a. I can create an Iif statement for each one individually, and then another statement that combines all of my single statements, but wanted to check to see if there is a way to combine this initially. This is what I have (too much):
Expr1: IIf([EL1a]=”No”,1,0)
Expr2: IIf([CA1a]=”No”,1,0)
Expr3: IIf([CD15a]=”No”,1,0)
Expr4: IIf([RD11a]=”No”,1,0)
Expr5: IIf([PF7a]=”No”,1,0)
Expr6: IIf([Expr1] Or [Expr2] Or [Expr3] Or [Expr4] Or [Expr5]=1,1,0)
Thanks for any assistance that you can provide.