If you want to start with a blank item in the dropdown, you can set its Items property to a collection where the first element is blank. For example, if you get the possible choices from a table 'Employees' and you display the Name property in the dropdown, you can have this expression in the screen's OnVisible property:
ClearCollect(employeesWithBlank,{Name:""}); Collect(employeesWithBlank,Employees)Then you can set the collection 'employeesWithBlank' as the Items property of your dropdown control.
Notice that the dropdown currently has a bug in which blank entries appear with a smaller height (can be hard to select on small screens, such as phones). You can work around this by defining the name as a 'non-breaking space':
ClearCollect(employeesWithBlank,{Name:Char(160)}); Collect(employeesWithBlank,Employees)In this case you'll have the first option in the dropdown showing the same format as the others.