Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Everyone,
I have below [SOP Month/Year] field in raw data. I am trying to create Date using this . i tried below :-
Date#(Date("SOP Month/Year",'YYYYMM'),'DDMMYYYY') as Date,- didn't worked. it gives below output:-
I tried using other functions like num , floor, makedate , etc but it didnot worked
MakeDate("SOP Month/Year",1) as New_Date,
Please help
Thanks is advance
Try this instead
Date(Date#("SOP Month/Year", 'YYYYMM'), 'DDMMYYYY') as Date
Try this instead
Date(Date#("SOP Month/Year", 'YYYYMM'), 'DDMMYYYY') as Date