I want to count customerID in a table but I want to exclude 3 id's. Is there a way to do this with count or countif on an access form?
I have tried countif([CustomerId[, Not in (3,8,9))
=Countif([Car Initials],<>3 or <>8 or <> 9)
=Countif([Car Initials],<>3,8,9)
None of those are allowed
Also, when i try to do it in a regular query Not in (3,8,9) works but if I change it to a totals query and use the count function it does not work.