I am trying to pull a Selected Value from a dropdown in a form, and use the patch function to send it to a SharePoint List. Here is my Code:
Patch('UR Rounds', Defaults('UR Rounds'), {Status:'Dropdown - EFS Filters'.Selected.Value, 'Title':DataCardValue8.Text, 'LastName':DataCardValue9.Text, 'Day/Night':DataCardValue10.Selected.Value, 'Date':DateValue2.Date})
DataCardValue10 is a drop down where the user selects either Days or Nights. DateValue2 is a date selector. The other items in this patch command work, including the dropdown labeled 'Dropdown - EFS Filters'.
