Hi,
I am creating an app that lists tasks of 2 types of shutdown. I am using Patch to update each record as they are completed. What I am trying to do now is essentially 'reset' the sharepoint list for each type of shutdown so that it can be used for the next shutdown.
I am trying to filter the list by shutdown type then patch the Completed column and Task Completed column so that they say false.
So I am filtering a data source by one column, then patching all the records that the filter returns.
This is what I have so far...
ForAll('Pilot TC San', (Patch('Pilot TC San',LookUp('Pilot TC San',Shutdown=Dropdown1.Selected.Result),{Completed:false,TaskComplete:False})))
Dropdown.Selected.Result is the type of shutdown that is to be reset.
I get an error which states 'This Function cannot operate on the same data source that is used in the ForAll function'.
Any help on this would be much appreciated