Thread
:
Simple but I can't get it to work? PLEASE help!!
View Single Post
#
4
Posted to microsoft.public.excel.misc
Dave O
Posts: n/a
Simple but I can't get it to work? PLEASE help!!
This code worked for me:
Sub FindToday()
Dim rCell
Range("c3:bo3").Select
For Each rCell In Selection
If rCell.Value = Date Then Range(rCell.Address).Offset(1, 0).Formula
= "=HMLoc"
Next rCell
End Sub
Reply With Quote