Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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