Hi Experts,
I've got an app that has a dropdown box with 3 items. When the user selects one of the 3 items, I want it to patch straight away to my sharepoint list. The code that i've used in my OnSelect of dropdown box is below but it only seems to select the first option in the list when I click on the arrow of the dropdown box.
Select(Parent);
Patch(
TicketingSystem,
'Gallery-Tickets'.Selected,
{
Technician:
'Dropdown-Technician'.Selected.Value
}
)
Thanks in advance!