Curious.... I am using App Formula =MAX(MyS...

Curious…

I am using App Formula =MAX(MySource[MyColumn])+1

two things;

  1. I am wondering if it is possible to check the column for missing values in the ascending sequence first, and use the first missing value, if Not, Then use =Max. 2. Shared as App Creator… should I expect issues with =Max in multi user environment when?

Maybe something for Initial Value? Public, Not using security filters.

Happy Holidays!

0 3 377
3 REPLIES 3

Keep in mind that all the functions evaluated during form processing occur on the user’s device at the time the form is opened and as the user interacts with the form.

Further, the user’s device is using a copy of the data as of the last sync. Each user of a multi-user app is using their own copy. Only when the app syncs does the device copy update to reflect data synced by other users.

Given the above, using any formula to construct a unique ID value based on existing data is risky, since the formula cannot be aware of decisions made on other users’ devices until everyone has synced.

For instance, if two users sync simultaneously, so they have the same data set, then each adds a new row with an ID constructed using MAX(), each ID would be the same because each user would compute the same max value from the same data. When they then sync again, the data from the first to sync would be overwritten by the second.

Please see the attached. Sequential Keys help.appsheet.com

Okay I understand. I am not trying to construct unique id…

Thanks for the info…! I appreciate the response, and links for more info!

I am using other values as key.

Top Labels in this Space