Ignore Blank Cells in Drop Down List

Subbie

New Member
Joined
May 11, 2019
Messages
32
Hi Following some very useful help yesterday I was able to plough on with my project.
I am now on my final UserForm and have a combobox2 which is coded:

Private Sub ComboBox2_DropButt*******()
With ComboBox2
ComboBox2.List = Worksheets("BankRec").Range("A1:A175").Value
End With
End Sub
This works great however There are blank cells at the beginning of the list that will always be in the column dropdown list and I would like the blank cells to be ignored so that the dropdown list starts with the first populated cell. I have tried various methods found on the web and tried a few of my own but I got compile errors or range errors.
Could anyone suggest a way to get the drop box to go to the first filled cell and ignore blank?
As always grateful for any help.
Subbie
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Are the values in col A unique?
 
Upvote 0
If you're happy with unique values only, try
Code:
Private Sub ComboBox2_DropB[COLOR=#000000]utt[/COLOR][COLOR=#000000]*******[/COLOR]()
   Dim Cl As Range
   
   With CreateObject("scripting.dictionary")
      For Each Cl In Worksheets("BankRec").Range("A1:A175")
         If Not Cl = "" Then .Item(Cl.Value) = Empty
      Next Cl
      Me.ComboBox2.List = .Keys
   End With
End Sub
 
Last edited:
Upvote 0
Are the values in col A unique?

Hi
Thanks for the response.
The setup is that the References are in Column A: CD1, CD2 etc.
When the user uses the Ref i.e. CD1 it is written to column G, CD1 is then removed from Column A. The way the deletion occurs means the ref CD1 remains in Column B which is a control column. So that means the Reference appears in 2 columns.

Subbie
 
Upvote 0
Hi
Thanks for the response.
The setup is that the References are in Column A: CD1, CD2 etc.
When the user uses the Ref i.e. CD1 it is written to column G, CD1 is then removed from Column A. The way the deletion occurs means the ref CD1 remains in Column B which is a control column. So that means the Reference appears in 2 columns.

Subbie

Was getting an error and realised it was my changing another variable.
Now working exactly as I need it to.
Very grateful for your wise advice.
Subbie
 
Upvote 0
You're welcome & thanks for the feedack
 
Upvote 0

Forum statistics

Threads
1,214,563
Messages
6,120,248
Members
448,952
Latest member
kjurney

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