Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I m bit confused while trying to convert the date into desired format.IF we will change the date format in excel then O/P will come but i wanted to get the O/p at Qlik level.
PFA
Regards,
KK
In your App..
Date1=40,552,you can convert this into standard date as(your required date)
=date(date#(Date('40,552'),'DD/MM/YYYY'),'DD-MMM')-->it result as 01-sep
test field as 09/01/2009,you can convert this into standard date as(your required date)
=Date(date#('09/01/2011','MM/DD/YYYY'),'DD-MMM')-->it result as 01-sep
Did u try?
Date(date#(field_name,'MM-DD-YYYY'),'DD-MMM')
S i have tried but date is coming blank
try this
Date(Date,'DD-MMM') as output
In your App..
Date1=40,552,you can convert this into standard date as(your required date)
=date(date#(Date('40,552'),'DD/MM/YYYY'),'DD-MMM')-->it result as 01-sep
test field as 09/01/2009,you can convert this into standard date as(your required date)
=Date(date#('09/01/2011','MM/DD/YYYY'),'DD-MMM')-->it result as 01-sep
Tnx Surendra,I was missing that Date func