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: 
qvqfqlik
Creator
Creator

unique dates

Please help with showing distinct dates in the search for table columns in qliksense

I tried distinct(datefield) but this didnot help.

datesdistinct.JPG

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Your date values are probably timestamps.

When loading in your date values, truncate the time part:

LOAD

     Date(Floor( DATEFIELD),'DD/MMM/YYYY') as Date,

View solution in original post

2 Replies
swuehl
MVP
MVP

Your date values are probably timestamps.

When loading in your date values, truncate the time part:

LOAD

     Date(Floor( DATEFIELD),'DD/MMM/YYYY') as Date,

qvqfqlik
Creator
Creator
Author

Thanks very much Stefan! Your right! that worked