Hi @fireflyxxoo,
Could you please tell me which column type you choose to save the region and state, Single-line-of-text?
Here is what I got form your description:
1). Region and State has 1:1 relationship in your list
2). You want to create cascading dropodown based on this relationship
3). Either you select Region or State, another dropdown could be populated with the corresponding state or region
If the above is correct, here is a solution for your reference(Supposed to be a single-line-of-text column type).
1). Set the Region dropdown control Items property:
List.Region
2). Set the Region dropdown control Items property:
List.State​
3). Set the DefaultSelectedItems(for ComboBox) as below:
If(!IsBlank(ComboBox_State.Selected.State),Filter(List,State=ComboBox_State.Selected.State).Region)//For Region ComboBox DefaultSelectedItems property
If(!IsBlank(ComboBox_Region.Selected.Region),Filter(List,Region=ComboBox_Region.Selected.Region).State)//For State ComboBox DefaultSelectedItems property
If you user a Dropdown box instead, you just need to replace the Filter() function with LookUp() function.