Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
rt_new_user
Contributor III
Contributor III

How to strip my date field which is in this format (DD/MM/YYYY hh-mm-ss AM/PM) into something like this (DD/MM/YYYY) and basically get rid of the time part?

Screen Shot 10-28-15 at 11.57 AM.JPG

1 Solution

Accepted Solutions
oknotsen
Master III
Master III

Floor it.

When loading the timestamp, use the floor() function to remove the time part.

Floor(someDate) as someDate,

If it still shows with the time as part of it, add the date() function.

May you live in interesting times!

View solution in original post

2 Replies
oknotsen
Master III
Master III

Floor it.

When loading the timestamp, use the floor() function to remove the time part.

Floor(someDate) as someDate,

If it still shows with the time as part of it, add the date() function.

May you live in interesting times!
rt_new_user
Contributor III
Contributor III
Author

Thanks it worked!!