Скажем, вы хотите проверить столбец C (столбец = 3):
Dim i as integer
For i = 1 to 50 'row 1 to 50
If Cells(i,3).Interior.Color = RGB(insert RGB of red color) Then 'So if the statement is true, we want to add the cell's contents to the ComboBox.
YourSheetName.YourComboBoxName.AddItem Cells(i,2).Value 'Add cell contents to the ComboBox
End If
Next i
Я полагаю, что это должно сработать.