Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a year field and a month field that shows Jan, Feb, Mar, Apr, etx. My load script also already has :
SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';
It is probably easy but I cannot seem to get these fields in a format such as Apr 2017. The issue is I need to create a rolling 12 month flag so I didnt think Month&' '&Year would work. Any help is appreciated.
Thank you!
If you have a year field too, try like:
Load
MonthName(MakeDate(YearField, Month(Date#(MonthField, 'MMM'))) as MonthName
If you have a year field too, try like:
Load
MonthName(MakeDate(YearField, Month(Date#(MonthField, 'MMM'))) as MonthName
You need to do like below? MonthName(DateField) as MonthName
Or you can try this
Date(Date#(Month&Year, 'MMMYYYY'), 'MMM YYYY') as MonthYear