Link combo box selection to a cell

  • Thread starter Thread starter Sara
  • Start date Start date
S

Sara

I have made several dropdown lists with combo boxes and in each of them I
have a choice called "other". I would like to have this selection lead the
user to a cell lets say B1 and list what is other in that cell. I am not sure
how to make this work. Any help would be great.

Thanks
 
hi
is i understand you, this might work for you....
Private Sub ComboBox1_Change()
If ComboBox1.Value = "other" Then
Range("B2").Select
End If
End Sub

regards
FSt1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Add a combo box 1
Copying Combo Boxes?! 5
Link cell to combo box 2
Combo Box dropdown data 20
Combo Box 1
combo box 2
Help with formula 4
combo boxes 1

Back
Top