Populating combo box based on which cells are empty

Weasley0307

New Member
Joined
Dec 25, 2023
Messages
6
Office Version
  1. 2021
Platform
  1. Windows
Hi. I am beginner in vba. I want to have my a combo box in my userform to display all the list of entry (from Column C) based on which whichever cell in row A is empty.

For example: in this case below the combo box should display 202403 and 202405 since A6 and A8 are empty.

Can anyone guide me on how to write the code? Thanks
1705909105714.png
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Try the following snippet:
VBA Code:
For I = 5 To Cells(Rows.Count, "C").End(xlUp).Row
    If Cells(I, "A").Value = "" Then
        UserformName.ComboBox1.AddItem Cells(I, "C")            'Your userform name
    End If
Next I

For example use it within the userform.initialize code:
VBA Code:
Private Sub UserForm_Initialize()
Dim I As Long
'
For I = 5 To Cells(Rows.Count, "C").End(xlUp).Row
    If Cells(I, "A").Value = "" Then
        Me.ComboBox1.AddItem Cells(I, "C")
    End If
Next I
End Sub
Try...
 
Upvote 0
Solution

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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