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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Dates with hours,

Hello,

I have in my data model the dates with hours, so there is more than one different value for each day.

This is an issue when I make a table with this date as a dimension, because I have more than one register for each day.

Is it possible group all the registers of one day in one unique value without using the script?

Thank you,

Sara

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Sure, while you create this in the script, use Floor() function

LOAD Date(Floor(DateField)) as Date

Or you can use the same in the list box expression:

=Date(Floor(DateField))

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

Sure, while you create this in the script, use Floor() function

LOAD Date(Floor(DateField)) as Date

Or you can use the same in the list box expression:

=Date(Floor(DateField))

MarcoWedel
MVP
MVP

You can also use

DayName(yourtimestampfield) as Date

Regards

Marco