Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

timestamp removal form date

Hi All,

comm1.PNG.png

How do i convert it to DD/MM/YYYY date format??

I tried date(floor(timestamp#(CREATEDDATE,'M/DD/YYYY h:mm:ss[.fff] TT')),'DD/MM/YYYY') as date

But its giving null value .

kindly help

9 Replies
senpradip007
Specialist III
Specialist III

Try like

SubField(CREATEDDATE, ' ' )  As date

Not applicable
Author

Hi,

Please try with Date(Createdate,'DD/MM/YYYY')

Regards,

Joshmi

senpradip007
Specialist III
Specialist III

You also try this:

Date(CREATEDDATE, 'DD/MM/YYYY') As date

Not applicable
Author

not working

PrashantSangle

Hi,

Try this

SubField(CREATEDDATE, ' ' ) as NewDate

or

date(floor(timestamp#(CREATEDDATE,'MM/DD/YYYY hh:mm:ss TT')),'DD/MM/YYYY') as NewDate

or

Date(Floor(CreteDate),'DD/MM/YYYY')

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
ashfaq_haseeb
Champion III
Champion III

Hi,

If it is proper date then just try below

Date(floor(CREATEDDATE),'DD/MM/YYYY') as Date

Regards

ASHFAQ

aveeeeeee7en
Specialist III
Specialist III

Try this:

Date(Subfield(Num(CREATEDDATE),'.',1),'DD/MM/YY') AS New_Created_Date

Regards

Av7eN

senpradip007
Specialist III
Specialist III

I don't know why this is not working, its working fine in my application. Can you please upload sample application?

Not applicable
Author

Try, left(date(CREATEDDATE,'DD/MM/YYYY'),10)

Thanks,