Hi i have this Gallery connected to a sharepoint list and when i update the column "Utfall" thats yellow marked by pressing the save button "Spara", it takes 1 minutes and 30 seconds to update it.
Is there any faster way to get this done?
The code that im using for the OnSelect event for the button is:
ForAll(Gallery1.AllItems;
UpdateIf(
Produktionskommentar; ID = Value(ID); {Utfall:Value(txtUtfall.Text)}))
Thanks Petter
Solved! Go to Solution.
Hi @Petter120 ,
This approach will reduce the execution time:
ForAll(
Gallery1.AllItems AS dataFromGallery;
Patch(
Produktionskommentar;
LookUp(Produktionskommentar; ID = dataFromGallery.ID);
{Utfall:Value(txtUtfall.Text)}
)
)
Hope it helps !
Hi @Petter120 ,
This approach will reduce the execution time:
ForAll(
Gallery1.AllItems AS dataFromGallery;
Patch(
Produktionskommentar;
LookUp(Produktionskommentar; ID = dataFromGallery.ID);
{Utfall:Value(txtUtfall.Text)}
)
)
Hope it helps !
Wow no it takes 3 seconds.
Thanks 🙂
Now i was too fast its not updating the sharepoint list (Probably why it goes so fast), any ideas why is it something with the ID?
I updated my post. Please give it a try in this form.
Now it works, thank you
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
204 | |
97 | |
60 | |
51 | |
47 |
User | Count |
---|---|
255 | |
158 | |
87 | |
79 | |
59 |