Hi All,
I have a button with the following code
RemoveIf(datasource, GUID = Var_GUID);
Collect(datasource, {GUID = Var_GUID, xxxxxx});
Basically, it is to remove all the existing records and collect a set of new.
The issue I encounter is that second collect function does not always execute as expected,
The thought in my mind is that the first syntax is still being executed then the second started therefore a conflict.
Anyone have affirmative mechanism or how to solve it?