If your date in a1 is a date then the b1>>> dates will also be dates so date
will be found.
Please try to FULLY state your problem when you post. You said COPY ("I am
looking to copy"), not paste values. Here is the modification.
Sub copytodayscolumn()
mc = Rows(1).Find(Date).Column
'MsgBox mc
lr = Cells(Rows.Count, mc).End(xlUp).Row
'MsgBox lr
'Range(Cells(2, mc), Cells(lr, mc)).Copy Range("z1")
Range(Cells(2, "z"), Cells(lr, "z")).Value = _
Range(Cells(2, mc), Cells(lr, mc)).Value
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"Sean" <(E-Mail Removed)> wrote in message
news:4712f8b1-f7ff-438b-bf66-(E-Mail Removed)...
> Don, thanks, two things on this
>
> My dates are a formula eg. in cell B1is A1+1 etc etc, so the code
> can't actually find a valid date. Also where is the 'paste' part in
> the code, as I wish to have paste special values
>