Same Field in Query

kirkm

Registered User.
Local time
Tomorrow, 08:28
Joined
Oct 30, 2008
Messages
1,257
If a single field in a query contain the same thing for every record, is there an Access method for True or False
Or is looking/comparing each one the way to go?
 
Not sure if this is what you are asking but you could make a second column and use...

Code:
Matches: If([MyOtherField]="YourText", True, False)
 
Or create a query, grouping on the field and counting the occurrence of each value ie

select FieldName, count(FieldName) from TableName group by FieldName
 
Thank you Gina and Cronk. I used the Count query and is working nicely
 

Users who are viewing this thread

Back
Top Bottom