I currently have a query which returns two columns, one detailing the age and the other returning the number of items
this is done using a count query
I need this data as ranges rather than absolute values, i.e. rather than a list of
17 years 1 item
21 years 1 item
22 years 13 items
33 years 1 item,
i want:
under 18 years 1 item
19-24 14 items
25+ 1 item
Is this possible in a sensible way? I can only think of extremely contrived ways to do this
Cheers
this is done using a count query
I need this data as ranges rather than absolute values, i.e. rather than a list of
17 years 1 item
21 years 1 item
22 years 13 items
33 years 1 item,
i want:
under 18 years 1 item
19-24 14 items
25+ 1 item
Is this possible in a sensible way? I can only think of extremely contrived ways to do this
Cheers