View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Corey Corey is offline
external usenet poster
 
Posts: 363
Default Now() to be placed in Next Column ?

I have a list of Dates in a mmmm yy format in sheet1.Range("B17:B28")

When i run a macro in another sheet, i want the Currrent (mmmm yy) to be
placed in the corresponding row in Column C.
I have the Current (mmmm yy) in sheet5.Range("B1") where i run the macro
from.
So i want some thing like:

If sheet1.Range.Cells("B17:B28").Value = Sheet.Range("B1").value then
Now() (mmmm yy) to be placed next to the month year column with that same
date.

How can i do this?
I am sure it is simple, but evades me to date?