Hoping someone can help me improve the performance of an UpdateIf
statement I am using in PowerApps. Here is the code:
UpdateIf( Nominations,true, { Status: {Value: "Not Approved"}, 'Approved By': varUser } );
This works, but takes about 5 minutes to run through 800 records, which feels very slow. I am new to PowerApps, so I don't know what is a reasonable run-time, but again that feels very slow. Can anyone help provide an alternative? I have tried Update
and Patch
but to no avail.
Thank you very much!