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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
khaycock
Creator
Creator

Date Time Stamp

I have a date/time stamp that has been given to me in this format: 2017-02-28T00:00:00+00:00


What do I need to put in the script to get rid of the time part?

So I want it to just show DD/MMM/YYYY..

11 Replies
annafuksa1
Creator III
Creator III

you need to use this

LOAD  date(Date#(left(DueDate,10) ,'YYYY-MM-dd'))as DueDate

annafuksa1
Creator III
Creator III

or you can use this


LOAD  date(Date#(left(DueDate,10) ,'YYYY-MM-dd'),'DD/MMM/YYYY') as DueDate