Hello all,
I'm new here and new to Power Apps and need some help please. I've searched the forms but haven't been able to find the fix yet...
Configuration: Select a record from the main screen; using "Collect" to save the record -> Navigate sends user to Action Screen -> User selects a name from the dropdown (from "Profile" list) -> User clicks a button to update the name in the "Main Data" list to the name selected in the dropdown. I'm using a separate "Profile" list due to my main data list being > 30k records.
Dropdown (working correctly): Distinct(Sort('Profiles',Name.DisplayName,Ascending),Name.DisplayName)
Update Button (Not working): ForAll(Collect_List1,Patch('Main Data',ThisRecord,{'Assigned To': Dropdown1.Selected.Result}))
Error: The type of this argument 'Assigned To' does not match the expected type 'Record'. Found type 'Text'.