I have a list which holds country value. This list is shown in a drop down. I have another drop down for states. When I select the country, the state drop down should be populated with the states of selected country. I am new to info path and doesn't know how to achieve this.
In C# I would write something like this (pl ignore syntax)
if(state.country == countryDropDown.SelectedValue) StateDropDown.add(State);
How can I do the same in Infopath?