HI I want to create a dynamic table in which I show the "time inside" value — how long a car has been inside.
The time should increase every second, like a real-time timer, for each row in the table (i.e., for each car).
I tried using a parameter-based approach it worked , but the data i need is with query.
What I need is for the values in the "Time Inside" column to update automatically every second, without needing user interaction.
Also, I want to update multiple columns at once if needed.
as u can see in picture time inside
Hi Davor,
This sounds like a good use case to use query updates, a mechanism that allows data in a query to update in (near) real-time. Note that the update mechanism is based on the data source and operators in your query. The most flexible way to get the full real-time data is by writing your own ad hoc data source that sends the updates.