Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
My date filed in CSV is like "Monday, March 14, 2016" , Please suggest a function in Qlik to read it as date?
Date(Date#(datefield, 'WWWW, MMMM DD, YYYY'))
-Rob
makedate(subfield([Date_Created],',',3), |
ApplyMap( 'MonthName',PurgeChar(subfield([Date_Created],',',2),' 0123456789')),
KeepChar(subfield([Date_Created],',',2),'0123456789')) as [Transcation Date],
Date(Date#(datefield, 'WWWW, MMMM DD, YYYY'))
-Rob