How do I get the following to show the content of my dropdown or combo box in Ascending / Alphabetical order?
When original constructed the dropdown and data worked fine. However, as I started adding new names through power apps those name always display at the bottom of the dropdown list, rather than appearing ascending and alphabetically. The new names appear at the bottom as shown here, as an example.
Leghorn, Daffy A
Wayne, Bruce
Duck, Daffy A
How do I get the above and any new names to appear in the dropdown ascending and alphabetically by rewriting the below? All components of the below work, except any new names. Also, anyone OTHER than region should see ALL names (no matter region) in ascending/alphabetical order.
If(Hierarchy="Manager", Sort(Filter('List', Region=varRegion),FullName,Ascending))