So i am saving my screens's data to collections and in one screen I have a gallery. In the gallery I have 2 controllers and these can be as many more as the user selects.
The question is each screen uses GUID() and when I save the Gallery with ForAll to collection, it saves each line with different GUID()!
I want each record saved has the same GUID(). Next user, when saves, it will create a new GUID() for his/her record.
The formula I use ;
ps: the records you see in the image above are for one record.
change Volumes_ID to _localGuid and now they will all have the same guid.
Another Option
With(
{ NewGuid: GUID() },
Now put in your ClearCollect etc code, but substitute the GUID() function for the word NewGUID, and it will have the same
and it will not create a local variable.
);
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.