Suppose I have one row with a column of EnumList type. Currently the column’s value is {A,B,C}. It has a Behavior which adds “D” to the List, so when User 1 presses the button on their device, the column changes to {A,B,C,D}. Let’s make D a User-dependent value D1, so the final list would be {A,B,C,D1}
But what if after User 1 does their thing, User 2 on another device presses the button 5 seconds later? Would the final result be {A,B,C,D1,D2} or {A,B,C,D2} ?
Thanks. So I guess the solution here, if I wanted a list {A,B,C,D1,D2} to come out of this, I would have to make a new table with rows referenced to rows in the original table.