Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
RIGHT([Fiscal Period ID],2) AS Month is showing month like 1,2,3,4,5,6,7,8,9 need to convert into Jan,Feb Mar,Apr
Hi Karim,
what's the format of the data in the [Fiscal Period ID]?
Andy
Use Month(YourDateField)..
i.e Month(RIGHT([Fiscal Period ID],2) ) as Month.
201506
Try this
=Date(Date#(RIGHT([Fiscal Period ID],2) ,'YYYYMM'),'MMM')
try with
=SubField(MonthNames,';', RIGHT([Fiscal Period ID],2))
or
=month(date#(RIGHT([Fiscal Period ID],2), 'MM'))
=Month(Date#(Right(201506,2), 'MM'))
SubField('$(MonthNames)',';',RIGHT([Fiscal Period ID],2))
match(RIGHT([Fiscal Period ID],2), 'Jan' , 'Feb' , 'March' , 'April' , ' May' , 'June' ,'July' , 'Aug' , ' Sep' , 'Oct' , ' Nov' , 'Dec')
HI Karim,
based on the format supplied, please try the following:
FPID:
Load * Inline
[
"Fiscal Period ID"
201501
201502
201503
201504
201505
201506
201507
201508
201509
201510
201511
201512
];
Month:
Load
month(date#(RIGHT([Fiscal Period ID],2), 'MM')) // THIS IS THE SECTION YOU NEED
Resident FPID;
HTH - Andy