How do I use the count() function to count the number of unique values in a report? The report is based on a query that is already counting and grouping another set of values so I can't group by through that.
If I have [callsign] values that contain duplicates, I just want to know the total number of unique call signs on the report.
I tried =Count(iif(Not [callsign]=[callsign],*,IsNull)) but that doesn't seem to be doing it.
Maybe =Sum( Iif(Not [callsign]=[callsign],1,0) )
???