Fill Combobox

urobee

Board Regular
Joined
Jan 30, 2015
Messages
98
Hy, I have a combobox i want to it fill from a dynamic range.
I can fill the combobox with all the data from the range but I don't want to show the rows where the column U has a cell with value.
(I need to expand the code below to show only the rows where a cell in column U is empty)


Column U has a dynamic range: [d_reportlist]


Here is the original code:

Code:
Private Sub Combobox_fill()

    Dim i As Integer
    Dim c As Range
    Dim strSeparator As String
    
    For Each c In shData.[d_IDList].Cells
        With c
            For i = 1 To .Cells.Count
                If .Offset(, 8).Value = 0 Then
                    strSeparator = " * "
                Else
                    strSeparator = " | "
                End If
                
                If Len(.Offset(, 1).Value) > 13 Then
                    cbxPN.AddItem Format(.Value, "00000") & strSeparator & Left(.Offset(, 1).Value, 13) & strSeparator & .Offset(, 2).Value
                Else
                    cbxPN.AddItem Format(.Value, "00000") & strSeparator & .Offset(, 1).Value & String(13 - Len(.Offset(, 1).Value), " ") & strSeparator & .Offset(, 2).Value
                End If
            Next i
        End With
    Next c
End Sub

Thank You for Your help!
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.

Forum statistics

Threads
1,215,463
Messages
6,124,963
Members
449,200
Latest member
indiansth

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