Iain A
New Member
Hi,
Been searching for a way of Using a ComboBox that looks at a Worksheet Array of Countries (col A) / Cities (col B). If I select a Country the ComboBox should show all those Cities for that Country.
I have tried the following which works, but have 100s of Countries and multiple Cities for each Country
I have attached a stripped down file and would appreciate any assistance with this problem, apologies if this has already been covered, but cannot find anything in other threads.
Been searching for a way of Using a ComboBox that looks at a Worksheet Array of Countries (col A) / Cities (col B). If I select a Country the ComboBox should show all those Cities for that Country.
I have tried the following which works, but have 100s of Countries and multiple Cities for each Country
Code:
If cboCountry.Value = "AFGHANISTAN" Then Me.cboRegion.List = Sheet5.Range("B2:B6").Value
I have attached a stripped down file and would appreciate any assistance with this problem, apologies if this has already been covered, but cannot find anything in other threads.