I don't see the any attached images (I think its cause of the latest updates to the forum) but here's some thoughts based on my understanding.
You will have to use the Classic DropDown for this or add a Blank value to your Modern Dropdown values.
Classic Dropdown:
Update AllowEmptySelection: true
Default property of your DropDown: Blank()
OnSelect of the Sumbit Button: Reset(DropDown)
Modern Dropdown:
Items: [" ", "Item 1", "Item 2", "Item 3"]
If your items are coming from a DataSource, add a blank by creating a collection on OnStart:
ClearCollect(
colDropdownOptions,
[{fieldname: Blank()}],
Distinct(DataSource, fieldname)
);​
Default property of your DropDown: Blank()
OnSelect of the Sumbit Button: Reset(DropDown)
Hope this helps.
Kind regards,
Nandit
If this answers your query, please mark this response as the answer.
If its helpful, please leave a like. Thanks!