Hi all i have query which am trying to show from table "sheet"
the field am using is hr
what i would like to do is count then number of records who have results below:
<50
between 51 and 100
>100
this is what i got but am not sure its right?
SELECT Count(Sheet4.HR) AS [HR<51], Count(Sheet4.HR) AS [HR51-100], Count(Sheet4.HR) AS HR100
FROM Sheet4
HAVING (((Count(Sheet4.HR))<51) AND ((Count(Sheet4.HR)) Between 51 And 100) AND ((Count(Sheet4.HR))>100));
many thanks farouq
the field am using is hr
what i would like to do is count then number of records who have results below:
<50
between 51 and 100
>100
this is what i got but am not sure its right?
SELECT Count(Sheet4.HR) AS [HR<51], Count(Sheet4.HR) AS [HR51-100], Count(Sheet4.HR) AS HR100
FROM Sheet4
HAVING (((Count(Sheet4.HR))<51) AND ((Count(Sheet4.HR)) Between 51 And 100) AND ((Count(Sheet4.HR))>100));
many thanks farouq