I have a table "tblDevice" which has a field "CBID#" which has duplicate entries. I am trying to count the number of duplicates for each CBID# and then just make a table that just shows the individual CBID#'s and each ones number of duplicates.
I have used the SQL statement
Select CBID#, count(*) From tblDevice group by CBID#
This however does not work as I always get "a syntax error in date in query expression CBID#" message. Any help would be appreciated. Thanks
I have used the SQL statement
Select CBID#, count(*) From tblDevice group by CBID#
This however does not work as I always get "a syntax error in date in query expression CBID#" message. Any help would be appreciated. Thanks