Dropdown 3 has a ‘All’ option displayed in the Dropdown. This is more intuitive to use than the ‘blank’ option that can be enabled setting by the AllowEmptySection control of a Dropdown to True. The ‘blank’ option also disappears after a selection has been made but the ‘All’ in Dropdown 3 always remains
To create the ‘All’ option, I created a single column Table with the first record populated as ‘All’ using the ClearCollect function. Then the rest of the data to be displayed in the Dropdown is added to the Collection. Before adding, the data could be made distinct using the Distinct function or sorted using Sort or SortByColumns. The important factor though is that ‘Add’ is the first record in the Collection so therefore it is always the default value
The above is performed by the Load Button and its OnSelect property is set to the code below. ColContinents is the name of the Collection and Continent is the Column that contains the records we want to add. In a working App, this action would be carried out when the App or individual screen loads rather than using a Button.