Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have the following in the script
MonthName(Period) as Month
which results in MM-YYYY
I need the result to be the format e.g. Jan-17 instead of Jan 2017
Any idea how I can achieve the above?
Thanks
Try this?
Date(MonthName(Period),'MMM-YYYY') as Month
Try this?
Date(MonthName(Period),'MMM-YYYY') as Month
Try this
Date(MonthName(Period),'MMM-YY') as Month
Thanks Anil,
I changed it to
Date(MonthName(Period),'MMM-YY') as Month
Worked out perfectly.