ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,830
- Office Version
- 2007
- Platform
- Windows
I have this code in use below.
Im having an issue with £ charcter where it just turns to yellow as its incorrect syntax i assume.
Can you advise please
Im having an issue with £ charcter where it just turns to yellow as its incorrect syntax i assume.
Can you advise please
VBA Code:
Dim Cell As Range
For Each Cell In Range("L:L")
If Cell = "TO DO" Then
Cell.Interior.Color = vbRed
ElseIf Cell = "DONE" Then
Cell.Interior.Color = vbBlue
ElseIf Cell = ("£") Then
Cell.Interior.Color = vbGreen
End If
Next Cell
Application.ScreenUpdating = True