change numbers to date

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how to change a column of numbers to a date like
2411 to 24/11/05
3011 to 30/11/05
 
The formula is -

=value(left(a2,2)&"/"&right(a2,2)&"/2005")

in a cell that has been formatted to dd/mm/yyyy

Regards.

Bill Ridgeway
Computer Solutions
 
Hiya Abe,

Format
Style
Modify
Date

Then select the style you want

Hope that helps :)
--
@---}--
Laura..... :)
Liverpool, England

"Do you know where you're going to?"
 
That doesn't work for 1-digit days.

=DATE(2005,MOD(A1,100),INT(A1/100))
 

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