I’m trying to produce a query (probably crosstab) which displays the number of applicants groped by age range and ethnicity.
The two relevant fields in table ‘TblApplicant’ are ‘AgeAtApplic’ which is a number data type and ‘Ethnicity’ for which the data type is text.
I’d like to ages to be grouped some like this;
16-17
18-25
26-44
45-59
I’m hoping to get the result looking something like this
|Irish | Spanish
16-17 |4 |6
18-25 |3 |8
26-44 |8 |9
45-59 |12 |10 and so on…
Producing the ethnicity and count has been fairly strait forward but I can’t get my head around how to group the ages (first column).
Any ideas would be greatly appreciated.
Kindest regards to all.
The two relevant fields in table ‘TblApplicant’ are ‘AgeAtApplic’ which is a number data type and ‘Ethnicity’ for which the data type is text.
I’d like to ages to be grouped some like this;
16-17
18-25
26-44
45-59
I’m hoping to get the result looking something like this
|Irish | Spanish
16-17 |4 |6
18-25 |3 |8
26-44 |8 |9
45-59 |12 |10 and so on…
Producing the ethnicity and count has been fairly strait forward but I can’t get my head around how to group the ages (first column).
Any ideas would be greatly appreciated.
Kindest regards to all.