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: 
kevbrown
Creator II
Creator II

Date Time to Date

I have a field called Date which is a date time field. I would like a List Box based on this field but only want to show Date. Currently I'm guessing the date but dupplicated, I've tried changing the number format and Date(Date) but still get dupplicates

Kev

1 Solution

Accepted Solutions
MarcoWedel

DayName(Date)

or

Date(Floor(Date))

hope this helps

regards

Marco

View solution in original post

4 Replies
MarcoWedel

DayName(Date)

or

Date(Floor(Date))

hope this helps

regards

Marco

its_anandrjs
Champion III
Champion III

Hi,

You can try with Date(DateTime,'MM/DD/YYYY')

Ex:-

LOAD Date(DateTime,'MM/DD/YYYY') AS DateOnly,*;

LOAD Timestamp#(DateTime,'MM/DD/YYYY hh:mm:ss TT') as DateTime;

Load * inline

[

DateTime

01/29/2015 10:24:11 PM

];

Regards

Anand

kevbrown
Creator II
Creator II
Author

Superb, thanks

MarcoWedel

You're welcome

Regards

Marco