Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi folks,
One of my qvd having 32 bit integer field with date in the format YYYYMM . I have loaded that column by converting it into date like Date#(Date_field) as NewDate
When i am trying to display it in chart dimension as Jan 2015 , Feb 2015 , etc., using expression MonthName(NewDate) it is throwing error. Is there any problem with my conversion Date# in the load script ? Please help.
TIA
James
Try convert the date like this:
Date(Date#(Date_field, 'YYYYMM'), 'YYYY-MM-DD') as NewDate
Then date functions start working.
Try convert the date like this:
Date(Date#(Date_field, 'YYYYMM'), 'YYYY-MM-DD') as NewDate
Then date functions start working.
Thanks mindaugasbacius ! Works Well !!
-James