Hi @Anonymous,
Do you want to update the manager column as the dropdown1 selected user?
Could you please show me a sample about your data source?
Actually I am not sure if you have a standard Manager column where saving you as the manager, anyway, here is a solution I guess that you have a Manager column, and once you select Manager from the dropdown2, you will update the whol Manager column as dropdown1 selected user.
I assume you populate the Dropdown1 with office365users....
Set the patch button OnSelect as:
If(!IsBlank(ComboBox1.Selected.Email),UpdateIf(list,Manager.Email=User().Email,{Manager:ComboBox1.Selected}))
Also, to update the advisors access level based on what access level you have selected in dropdown2, you need to write the follwoing formula:
If(!IsBlank(ComboBox1.Selected.Email)&&!IsBlank(ComboBox2.Selected.Email),Patch(AccessLevel_list,LookUp(AccessLevel_list,UserColumn.Email=ComboBox1.Selected.Email),{AccessLvel:ComboBox2.Selected.Value}))​
Here I assume that your accesslevel list has a person column to save the user name and a text type AccessLevel column to save the selected level.
Of course you could combine the above two formulas as below:
If(!IsBlank(ComboBox1.Selected.Email)&&!IsBlank(ComboBox2.Selected.Email),
UpdateIf(list,Manager.Email=User().Email,{Manager:ComboBox1.Selected})&&Patch(AccessLevel_list,LookUp(AccessLevel_list,UserColumn.Email=ComboBox1.Selected.Email),{AccessLvel:ComboBox2.Selected.Value}))​​