I'm trying to patch a sharepoint list using two dropdown menus but I've been getting "Patch has invalid arguments".
This is my line of code for the patch button:
Patch('FST,Defaults('FST'),{'Furnace Process':drpFurnaceProcess.Selected.Result,Furnace:drpFurnace.Selected.Result})
The dropdown menus have these written in Item:
Furnace Process:
Sort(Distinct('Furnace Back End List','Furnace Process'),Result)
Furnace:
Filter('Furnace Back End List', 'Furnace Process' = drpFurnaceProcess.Selected.Result)
I've been following this tutorial (https://www.youtube.com/watch?v=Qzpjq008cBY&ab_channel=RezaDorrani) but I've gotten stuck on this part.