date conversion

  • Thread starter Thread starter function newbie
  • Start date Start date
F

function newbie

can a date be converted into the current year.
ie: cell a1 = 1/9/95 cell b2 should = 1/9/03
 
=DATE(YEAR(TODAY()),MONTH(A1),DAY(A1))

of course 02/29/00 will return 03/01/03
 
=+TEXT(MONTH(A1)&"/"&DAY(A1)&"/"&2003,"dd/mm/yy")

that appears to work..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top