I'm trying to tally a quantity of two conditions. Anyone able to tell me where I've gone wrong?
I'm trying to count the number of runs per type within a report.
This works:
=Sum(IIf([Type] Like "arff",1))
These don't:
=Sum(IIf([Run] Like "yes" And [Type]="arff",1))
=Sum(Iif([Run] Like "yes",Iif([Type] Like "arff",1)))