Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
hammermill21
Creator III
Creator III

Grouping Dates with different timestamps

Hello!

I am pulling dates that contain timestamps, I use this expression to remove the timestamps - =Date([CREATED DATE], 'MMM DD, YYYY') but now I have 30 inspection dates for Jul 12, 2017. I want to group all those together, how could I do this?

Thanks!

Using: QlikSense Enterprise

1 Solution

Accepted Solutions
sunny_talwar

Try this

=Date(Floor([CREATED DATE]), 'MMM DD, YYYY')

View solution in original post

5 Replies
sunny_talwar

Try this

=Date(Floor([CREATED DATE]), 'MMM DD, YYYY')

Anonymous
Not applicable

Sunny is correct.  Just using the Date function doesn't actually remove the time portion of the timestamp it just formats it.

You need to use a function like FLOOR in order to actually remove the time from the field.

hammermill21
Creator III
Creator III
Author

Thank you as always!!!

hammermill21
Creator III
Creator III
Author

Thank you as always!!!

hammermill21
Creator III
Creator III
Author

Got it, thank you! Foolish mistake!