V vdanelia Registered User. Local time Today, 14:07 Joined Jan 29, 2011 Messages 215 Mar 4, 2011 #1 How to Find unique values in a Table Field from Unbound text box =Dcount [Field] (Table Name is DATA and the field name is Dealer) Thanks
How to Find unique values in a Table Field from Unbound text box =Dcount [Field] (Table Name is DATA and the field name is Dealer) Thanks
L llkhoutx Registered User. Local time Today, 16:07 Joined Feb 26, 2001 Messages 4,018 Mar 4, 2011 #2 Query table Data, with only field Dealer selected, and group (select the sigma symbol) in the que window. If you merely wants to "count" the records, in the QBE window, change the word "Group By" to "Count", via the picklist.
Query table Data, with only field Dealer selected, and group (select the sigma symbol) in the que window. If you merely wants to "count" the records, in the QBE window, change the word "Group By" to "Count", via the picklist.
Brianwarnock Retired Local time Today, 22:07 Joined Jun 2, 2003 Messages 12,701 Mar 4, 2011 #3 The only way i know to count unique values is to Select them in one query and count them in another Select Distinct thefield from thetable select Count(thefield) as .. OR count(*) as alias From the query Count(*) if you want to count Blanks. Brian
The only way i know to count unique values is to Select them in one query and count them in another Select Distinct thefield from thetable select Count(thefield) as .. OR count(*) as alias From the query Count(*) if you want to count Blanks. Brian