I'm pretty new to PowerApps and am in the middle of building a new app that will collect Safety Alerts for my company and store all responses submitted in a Dataverse table titled 'Safety Observation Databases'. In general, a User is submitting either a Safety Notification or a Safety Recognition and they have to select their Name, Site, Service Group, Shift, Cost Center, and Work Center.

In the background I have added an Edit Form with the datasource set as the 'Safety Observation Databases' and am using the column field's Default property to record the entry with something like: Dropdown_Shift.Selected.Value or if it's a text input field (NotCorrectWhy) where the user is typing in an answer about why something isn't correct then the Default property to record the entry is: NotCorrectWhy.Text. Ultimately when someone completes filling out the app they hit the submit button whose On Select property is set to: SubmitForm('Safety Observation Database'), which effectively writes a new row into that Dataverse table.
The issue is when it comes to a Choices type column, it doesn't take the value selected into the form. I tried these two and neither works. Help!?!
- A dropdown titled Dropdown_SvcGrp with the Items property set to ["","00FSG","00HPG","00VSG","0RMWG","00EP","00CRP"] and then the Edit Form data card for the Service Group field's Default value set to Dropdown_SvcGrp.Selected.Value.
- A combobox titled ComboBox_SvcGrp with the Items property set to Choices('ServiceGroup (Safety Observation Databases)') and then the Edit Form data card for the Service Group field's Default value set to ComboBox_SvcGrp.Selected.Value.