Hi, Qlik holds timestamps as decimals so for example the num(now( )) function would return 44411.327511574 but displays as 2021-08-03 07:55:18. This is important for your comparison operator ">" so changing it to text means the operator won't work properly. If it's the [time] column that is in the wrong format and it's not reading correctly then you can format it in the 'where' statement by wrapping it in a Timestamp#( ) function. If it's in the format written above then you'd write it as: timestamp#([time],'D/M/YYYY, hh:mm:ss tt'). I noticed there's a comma in the format and I'm not sure how the timestamp is going to deal with that but give it a try. I hope this helps Regards Anthony