Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Friends,
I have column name as Invoice Date it contains value of YYYY-MM-DD like (2011-01-23), my requirement is I need to create dimention like Jan 2011.
I tried YearMonth(Invoice_Date) in script level and in expression level.
I am not getting any solution for that, could you please any one suggest a way to show Monthname and Year.
Regards
Chriss
Try
MonthName(Invoice_Date)
For 2011-01-23, this will return 'Jan 2011'
Hello chrismervin,
have you tried to use the date function?
like date(Invoice_Date,'MM YYYY') ?
Regards,
Aylin
Hello Sir,
Thanks a lot it works
Regards
Chriss