Hey,

I've got a loop running which holds an IF/ELSEIF. They work on the pretty much the same conditions but only the IF works and never the ELSEIF.

For cellCount = 1 To lastcell 'example : 1 to 150
If quoteSheet.Cells(cellCount, 3).Value = "SYSTEM" Then
'Do this
ElseIf quoteSheet.Cells(cellCount, 4).Value = "MISCELLANEOUS" Then
'Do that
End If
Next cellCount
Anything obvious I'm missing here ?

Thanks,
amphi