VBA ComboBox-input into a cell

george hart

Board Regular
Joined
Dec 4, 2008
Messages
241
Hi again

I need the code to place what's selected in a combobox into the next "blank" cell in column "B". This code works but places the selected item into all cells in column B that are not blank???..confused.

Private Sub OKButton_Click()
Dim x As Variant
For x = 4 To Cells(Rows.Count, "B").End(xlUp).Row

If Range("B" & x).Value <> "" Then Range("B" & x) = ComboBox1.Value

Next x
Unload UserForm1

End Sub
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Try

Code:
Private Sub OKButton_Click()
Range("B" & Rows.Count).End(xlUp).Offset(1).Value = ComboBox1.Value
Unload UserForm1
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top