Link combo box selection to a cell

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
 
F

FSt1

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

display list selection in a different cell 2
Add a combo box 1
Copying Combo Boxes?! 5
Combo Box dropdown data 20
Combo box VBA error 5
combo box 2
Combo Box - Cell Link 2
Combo Box/Drop down box 1

Top