R
RFJ
I've been watching other posts looking for advice on counting unique records
(ie taking out repeats in a field) but I just can't get the syntax to work.
The sql code for the total count follows. Is there SKS who could let me know
what the code change is to strip out the repeats.
TIA
Rob
SELECT Survey_Data.Survey_Job_Level, Count(Survey_Data.Organisation_Name) AS
CountOfOrganisation_Name
FROM Survey_Data
GROUP BY Survey_Data.Survey_Job_Level
HAVING (((Survey_Data.Survey_Job_Level)="Manager"));
(ie taking out repeats in a field) but I just can't get the syntax to work.
The sql code for the total count follows. Is there SKS who could let me know
what the code change is to strip out the repeats.
TIA
Rob
SELECT Survey_Data.Survey_Job_Level, Count(Survey_Data.Organisation_Name) AS
CountOfOrganisation_Name
FROM Survey_Data
GROUP BY Survey_Data.Survey_Job_Level
HAVING (((Survey_Data.Survey_Job_Level)="Manager"));