show the current year

  • Thread starter Thread starter spence
  • Start date Start date
S

spence

is there a way for a macro to insert the current year
into a cell. i have some formulas that calculate
holidays from an excel book, and they all have to refer
back to a cell containing the year. however when i tried
to put in a function such as =TODAY() in a cell and
formatted it as custom "yyyy" it still displays 1/13/04
and the formulas return a #NUM error. so i think a macro
might be able to just input "2004" into a cell somehow.
i have been playing with some VBA functions, but i am
sure that it is just something i havent learned yet.
TIA...spence
 
Spence,

Try

=YEAR(TODAY())

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Hi Spence!

Is this what you wanted to do:

Sub test()
ActiveCell.Formula = "=TODAY()"
ActiveCell.NumberFormat = "yyyy"
End Sub


--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
Back
Top