Skullmonkey
Computer
- Dec 10, 2001
- 12
I hate to ask these kind of questions, but... why doesn't this work? I'm getting a compile error on the
line.
Any help would be appreciated.
SM
Code:
Set dtFindMe
Code:
Sub FindDate()
Dim dtFindMe As Date
Dim rgFoundMe As Range
Set dtFindMe = DateSerial(2002, 2, 22)
Set rgFoundMe = Range("A:A").Find(what:=dtFindMe)
If rgFoundMe Is Nothing Then
Exit Sub
End If
rgFoundMe.Font.Bold = True
End Sub
Any help would be appreciated.
SM