Thread
:
Compare Dates in vba
View Single Post
#
2
Posted to microsoft.public.excel.programming
Keith74
external usenet poster
Posts: 120
Compare Dates in vba
Maybe something like this?
Public Sub MatchDates()
If Date = Workbooks("book1").Worksheets("sheet1").Cells(1,
1).Value Then
MsgBox "Dates match"
End If
End Sub
hth
Keith
Reply With Quote
Keith74
View Public Profile
Find all posts by Keith74