Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a field Named Month in the format of 202304 (YearMonth).
So how do i convert it into the format 'Apr-23'.
Thanks in advance.
Something along these lines:
Date(date#(OldMonth, 'YYYYMM'), 'MMM-YY')
Something along these lines:
Date(date#(OldMonth, 'YYYYMM'), 'MMM-YY')
One way could be this.
Date(Date#(YearMonthField,'YYYYMM'),'MMM-YY')
Jinx!
Thank you! It worked!! 😊
Thank you! It worked 🤗
Date(Date#('202303','YYYYMM'),'MMM-YY')