Please Note: I am using the SharePoint Integration to customize the form layout. This is different than creating a completely new form from scratch.
Issue: The customized form grabs the default values for some columns, but not others when clicking New form. Number and Text fields populate with the default values, but dropdown menus do not. Attached screenshot shows menu fields in Red that do not populate defaults, while the number fields at the bottom (Green checkmarks) do populate.
Background:
Under the EditForm-->Advanced tab-->Item field, I have entered the below formula (see 2nd screenshot). This has successfully pulled in the default values for Text and Number fields, but not for Dropdown menus.
If(IsBlank(SharePointIntegration.Selected), Defaults('LIST_NAME'),SharePointIntegration.Selected)
The DefaultMode is set to FromMode.Edit, but this has not impacted Text and Number fields from populating the default values.
Question: How can I get the default values to populate for dropdown menus? I also want these default values to be set within the SharePoint List Column directly, not through hardcoding values in the custom form.

