I had a quick look to see if there was any mileage in differentiating between:-
and,
For about 6,500 lines. There doesn't appear to be anything "out there" to help me form an opinion. Does anyone have any thoughts?
Many thanks,
D€$
Code:
For i = 1 To LastRow
If Left(Range("B" & i), 4) = "Food" Then
Rows(i & ":" & i).Interior.Color = RGB(180, 201, 95)
ElseIf Range("B" & i) = "Funeralcare" Then
Rows(i & ":" & i).Interior.Color = RGB(128, 136, 188)
ElseIf Range("B" & i) = "Specialist Retail Business" Then
Rows(i & ":" & i).Interior.Color = RGB(232, 184, 104)
ElseIf Range("B" & i) = "Pharmacy" Then
Rows(i & ":" & i).Interior.Color = RGB(186, 217, 210)
End If
Next i
and,
Code:
For i = 1 To LastRow
Select Case Range("B" & i)
Case "Food", "Food "
Rows(i & ":" & i).Interior.Color = RGB(180, 201, 95)
Case "Funeralcare"
Rows(i & ":" & i).Interior.Color = RGB(128, 136, 188)
Case "Specialist Retail Business"
Rows(i & ":" & i).Interior.Color = RGB(232, 184, 104)
Case "Pharmacy"
Rows(i & ":" & i).Interior.Color = RGB(186, 217, 210)
End Select
Next i
For about 6,500 lines. There doesn't appear to be anything "out there" to help me form an opinion. Does anyone have any thoughts?
Many thanks,
D€$