I am having trouble building an expression for an unbound text field on my report. My database contains a field named Class. The class field data can be I, II, III, IV or V. I would like the results of a count for this field on I, II and III excluding IV and IV. My expression looks like this:
=Count([Class]="I" Or "II" Or "III"
This expression returns a count for everything. What am I missing?
=Count([Class]="I" Or "II" Or "III"
This expression returns a count for everything. What am I missing?