Hi,
You need 2 lists:
State list
State & City list - State & City in separate columns
When a State is selected from the first list, return the List Index
[tt]
=Match(SelectedState,StateList,0)
[/tt]
Then you COUNT how many cities are in that state in the SECOND list
[tt]
=Countif(State,SelectedState)
[/tt]
Then in Insert/Name/Define -- define a range named CityList with the following expression
[tt]
=OFFSET(Sheet1!$L$1,MATCH(SelectedState,StateList,0),0,COUNTIF(State,SelectedState),1)
[/tt]
where Sheet1!$L$1 is the cell containing the City Heading in the second list
Then use =CityList in your second validation dd.
Skip,
[red]Be advised:[/red] When you ignite a firecracker in a bowl of vanilla, chocolate & strawberry ice cream, you get...
Neopolitan Blownapart!