I am using SSRS to extract data from Oracle - this includes a datetime field called 'created' - when I generate an excel file from ssrs, I want the date field to show in Excel as custom dd-mmm-yy
- however it currently shows as general
(in Excel, right click on field, field properties)
I've already tried in report builder:
Changing the Number Format to 'N'
=CInt(Fields!FieldValue.Value)
Changing the Number Format to dd-MMM-yy
In SSRS report builder I have created the field 'created' in my SQL query as follows:
upper r(to_char(UNI72LIVE.PR_BLPU.CREATED_D,'dd-mon-yy')) as Created
This displays correctly in report builder, but the problem occurs when the field is viewed in Excel