I have the following sql code in a query, this quite happily gives me totals for each combo item, but my ETHN combobox item is made up of a 'value' and a 'description'
How do I show the description with its total rather than the value with its total?
ie. Ethnicity Total
1 234 (value)
I would like this:
White 234 (Description)
SELECT [INDIVIDUALS Starter Info].ETHN AS Ethnicity, Count([INDIVIDUALS Starter Info].ETHN) AS Total
FROM [INDIVIDUALS Starter Info]
GROUP BY [INDIVIDUALS Starter Info].ETHN;
Cheers
How do I show the description with its total rather than the value with its total?
ie. Ethnicity Total
1 234 (value)
I would like this:
White 234 (Description)
SELECT [INDIVIDUALS Starter Info].ETHN AS Ethnicity, Count([INDIVIDUALS Starter Info].ETHN) AS Total
FROM [INDIVIDUALS Starter Info]
GROUP BY [INDIVIDUALS Starter Info].ETHN;
Cheers