Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi experts,
I am having Month filed having the data
1,2,3,4,5,6,7,8,9,10,11,12
but i want the output like
01,02,03,04,05,06,07,08,09,10,11
can you please help me on the same?
May be try
Date(MakeDate(2018.yourMonth),'MM')
Hi
use this
=if(len(Month<=1),'0' & Month,Month)
TIMESTAMP([YOURMONTH],'MM')
Hello,
Try this
Date(Date#(Month_Field, 'M') ,'MM')
Regards
Vamsee