Re: Dynamic Drop Down List in Form
Hi @Anonymous,
Could you please share a bit more about your scenario?
Do you want to populate the Counties Drop down dynamically based on the selected state within the States Drop down?
Based on the needs that you mentioned, I think you want to create a cascading Dropdowns in your app, is it true?
If you want to populate the Counties Drop down dynamically based on the selected state within the States Drop down, I have made a test on my side, please take a try with the following workaround:
Set the Items property of the States Dropdown box to following:
'YourStatesList'.ColumnName /* <-- ColumnName represents the column you use to store your US States values in your list*/
Set the Items proeprty of the Counties Dropdown box to following:
Filter('YourCountiesList', StateColumn = StatesDropdown.Selected.Value).CountiesColumn
Note: The StateColumn represents the column in your Counties list, which used to store the State value. The CountiesColumn represents the column in your Counties list, which used to store the Counties value
More details about creating a cascading Dropdowns in PowerApps, please check the following video:
https://youtu.be/pkZG2boN7jQ
Best regards,
Kris