@Anonymous
We have to add "Select an Employee Type" to top of the list of available options since there is no placeholder text property in a dropdown.
Put this code in the OnVisible property of your screen.
ClearCollect(myDropdownOptions, {Value: "Select an Employee Type"});
Collect(myDropdownOptions, Choices('SPO-List-Name'.'Employee-Type');
Then use the collection in the Items property of your dropdown
myDropdownOptions
Finally, write your placeholder text string in the Default value of the dropdown
"Select an Employee Type"
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."