You are almost on the right track. :) Try the following...
Public Sub Test()
Dim cmbMyBox As ComboBox ''Do Not use ComboBox, it is a reserved name for ... combobox
Dim i As Integer
For i = 1 To 80
If cmbMyBox(i).Text = "Level 4" Then ''Assuming that you have an array of 80 combo's
Range("S8") = "0.12"
Elseif cmbMyBox(i).Text = "" Then
Exit Sub ''Exit and do something...
End If
Next
End Sub
AndreRet
Industrious Poster
4,706 posts since Jan 2008
Reputation Points: 391
Solved Threads: 481
Skill Endorsements: 20