Hello,
I have a combobox that is populated from a column(C) in a worksheet. I only want items from that column to show in the dropbox if a value in a corresponding column(F) is greater than zero. is there a way to do this? here is the code that populates the dropbox.
I have a combobox that is populated from a column(C) in a worksheet. I only want items from that column to show in the dropbox if a value in a corresponding column(F) is greater than zero. is there a way to do this? here is the code that populates the dropbox.
Code:
Private Sub cbproducttype_Change()
With Worksheets(cbproducttype.Value)
cbltnbr.List = Sheets(cbproducttype.Value).Range("c:c").Value
End With
End Sub