Hi
I'm creating a holiday request tool and I'm trying to create an option for managers to set a delegate approver for requests.
I have 2 Comboboxes that get the person from the "Approver" and "Delegated Approver" columns in the Sharepoint using this:
ComboBox1 Items:
Distinct('Holiday Request Tool'.Approver, Approver.DisplayName)
ComboBox2 Items:
Distinct('Holiday Request Tool'.'Delegated Approver', 'Delegated Approver'.DisplayName)
I would like to add code to a button that will find all entries in the Sharepoint that match the Approver in ComboBox1 and updates the Delegated Approver field to the person in ComboBox2.
Thanks in advance!