I have a report which returns number of doors sold in a month from 2 locations. The month is displayed as a value 1-12.... I would like to return 1-Jan
, 2-Feb
etc.
EDIT
I am using:
datepart(MONTH, DeFactoUser.F_ST_Transaction.STTR_DATE)
to get the month number, I have tried:
datepart(MONTH, DeFactoUser.F_ST_Transaction.STTR_DATE) + '-' + datename(MONTH, DeFactoUser.F_ST_Transaction.STTR_DATE)
to get the name appended to the number. I get an error Conversion failed when converting the nvarchar value 'September' to data type int.
Obviously doing something silly.... any clues would be good.