i have a sheet with many different artists on and venues.
on a user form i have 2 comboboxes, when you choose an artist in the first combo box, i would like it to only display the appropiate venues for that artist.
this is the formula i have so far
Sheets("Concerts (2)").Select
If ConcertComboBox = "Arctic Monkeys" Then
VenueComboBox.RowSource = ARC_VENUE
ElseIf ConcertComboBox = "Babyshambles" Then
VenueComboBox = "WATEVA"
ElseIf ConcertComboBox = "Bloc Party" Then
VenueComboBox.RowSource = "Liverpool Academy" & "Manchester Apollo"
ElseIf ConcertComboBox = "Blondie" Then
VenueComboBox = "St David's Hall"
ElseIf ConcertComboBox = "Clor" Then
VenueComboBox.RowSource = "Coloseum" & "Waterfront"
ElseIf ConcertComboBox = "Dead 60s" Then
VenueComboBox.RowSource = "Carling Academy 2 Birmingham" & "Waterfront"
ElseIf ConcertComboBox = "Duke Spirit" Then
VenueComboBox.RowSource = "Carling Academy 2 Birmingham"
ElseIf ConcertComboBox = "Editors" Then
VenueComboBox.RowSource = "Carling Academy Brixton"
ElseIf ConcertComboBx = "Futureheads" Then
VenueComboBox.RowSource = "Carling Academy Brixton" & "Norwich UEA" & "Leeds Uni Union"
ElseIf ConcertComboBox = "Goldfrapp" Then
VenueComboBox.RowSource = "Carling Apollo" & "Leeds Uni Union"
ElseIf ConcertComboBox = "Kid Carptet" Then
VenueComboBox.RowSource = "Roadmender" & "Bar Academy Birmingham"
ElseIf ConcertComboBox = "Paddingtons" Then
VenueComboBox.RowSource = "Roadmender" & "Coloseum"
ElseIf ConcertComboBox = "Test Icicles" Then
VenueComboBox.RowSource = "Birmingham Barfly" & "Rivermead" & "Blank Canvas"
ElseIf ConcertComboBox = "The Go! Team" Then
VenueComboBox.RowSource = "Carling Academy Liverpool" & "The Plug"
ElseIf ConcertComboBox = "Thee Unstrung" Then
VenueComboBox.RowSource = "Coloseum"
End If
