Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
BenjaminCoe1440
Contributor III
Contributor III

Group by date not working

Ok, so I have a table of meter readings that I want to see summed by date. But the individual readings are made up of the 48 readings that comprise a day. For some reason, even though the field DateId is formatted as 'DD/MM/YYYY', the table won't show the readings sum per day

if(RptTime='00:00',Date(ReadingDateTime-1,'DD/MM/YYYY'),date(ReadingDateTime,'DD/MM/YYYY')) as DateId

BenjaminCoe1440_1-1669805752105.png

@vinieme12

Labels (1)
  • SaaS

1 Solution

Accepted Solutions
Or
MVP
MVP

Date() does not change the underlying value, which will maintain its original time aspect. Use either DayName(Field) or Date(Floor(Field)) to remove the time aspect.

View solution in original post

2 Replies
BenjaminCoe1440
Contributor III
Contributor III
Author

 
Or
MVP
MVP

Date() does not change the underlying value, which will maintain its original time aspect. Use either DayName(Field) or Date(Floor(Field)) to remove the time aspect.