CANNOT FIND THE POWREAPPS FORUM IN THE FORUM CATEGORY DROPDOWN
I am using the PATCH function to update a sharepoint list when a toggle button is checked or unchechecked :
This works fine and is in the Action/OnCheck:
Patch(List1Datasource,ThisItem,{MyColumn:true})
What I also want to do is CREATE an item in a SECOND sharepoint list at the same time:
This does not work:
Patch(List1Datasource,ThisItem,{MyColumn:true}), Patch(List2Datasource,Defaults(List2DataSource),{List2DataSource.MyColumn:true, List2DataSource.MyTitle:"Title content"})
PowerApps does not recognise the second datasource either using the "." delimiter or column name on it's own, should this be possible?