J
jbair via AccessMonster.com
I have a crosstab query as follows
TRANSFORM Sum(NCCodeMonthlySums.NCTotals) AS SumOfNCTotals
SELECT Val([NCMonth]) AS NCMonthSort
FROM NCCodeMonthlySums
GROUP BY Val([NCMonth])
ORDER BY Val(Mid([NCCode],3))
PIVOT Val(Mid([NCCode],3));
I want to format NCMonth ( which is now a month number) to abreviated text ie.
OCT DEC etc. I'm just a little lost on the formatting, any help will be very
much apreciated.
Jerry
TRANSFORM Sum(NCCodeMonthlySums.NCTotals) AS SumOfNCTotals
SELECT Val([NCMonth]) AS NCMonthSort
FROM NCCodeMonthlySums
GROUP BY Val([NCMonth])
ORDER BY Val(Mid([NCCode],3))
PIVOT Val(Mid([NCCode],3));
I want to format NCMonth ( which is now a month number) to abreviated text ie.
OCT DEC etc. I'm just a little lost on the formatting, any help will be very
much apreciated.
Jerry