Making rows of views visible for short time

Hi just want to share this trick where in the view the data of the particular row will be visible only for a specific time.
Go to data>>Slice>>Row filter condition and input ( totalminutes(now()-โ€œ03:15:30โ€)-totalminutes([Access datetime]-โ€œ03:15:30โ€)<15)
where view will be visible for 15 mins

3 4 244
4 REPLIES 4

Steve
Platinum 4
Platinum 4

Note that you MAY run into performance and/or battery-charge problems as your data set grows. A row filter expression with NOW() has to be reevaluated every second for every row of the underlying table.

Thanks, I didnโ€™t know that. Just implemented this and it worked so shared it here. But I will definitely keep this in mind.

Steve, I have taken to using UTCNOW() for timestamps and convert to local time with a virtual column as [utcTimestamp]-(UTCNOW()-NOW())

Is there a preferred way to do this? Iโ€™m aware of the usertzoffset() formula but Iโ€™ve not been using it.

The way youโ€™re doing it is how Iโ€™d do it.

Top Labels in this Space