Hi,
I have the following situation. I have a datasource (excel table, can't do it otherwise) and values from it changes (one of it, for example, is a status). I have some variables in my app that, with the help of a timer, these are trying to give me some values from my datasource. Like, monitoring the status. I refresh my table, my datasource, frequently (with a timer) and it's doing it quickly. I have a gallery and I see the changes made in the back, in the excel table and these changes reflects very quickly it this gallery but not at the same time in my variables. It takes too long to see that the content of my variables is different.
Currently the no of the records in the table is small, for testing (less than 10), I don't think that I could use collection as the datasource keeps changing.
For a variable I use LookUp(Table1, ThisRecord.SomeColumn = SomeVariable).Status
Is there a way to make the updates to reflect simultaneously in my table and in my variables, cause it is not ok to take more than 10 - 20 sec to see the changes in the variables too?
Thank you!