Dazzawm
Well-known Member
- Joined
- Jan 24, 2011
- Messages
- 3,786
- Office Version
- 365
- Platform
- Windows
I was given this macro to highlight in red what is on sheet 2 but not on sheet 1 . I know there is not a lot to it but I was wondering if it could be speeded up in anyway as I several thousand cells to be checked and it does take quite a long time. Do I just have to be patient? Thanks
Rich (BB code):
Sub dazzawm()
Dim c As Range, Found As Range
With Sheets("Sheet2")
For Each c In .UsedRange
Set Found = Sheets("Sheet1").UsedRange.Find(what:=c.Value)
If Found Is Nothing Then c.Interior.ColorIndex = 3
Next c
End With
End Sub