View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave O
 
Posts: n/a
Default 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