Help Convert "MM/DD/YYYY" to "YY:DDD"

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

Guest

Hello,

Please help:

I have a column of dates in the MM/DD/YYYY" format
How can I convert it to the
"YY:DDD" format?

For example, 12/31/2005 would become 05:365 and
01/01/1985 would become 85:01

Thank you!
 
Hello,

Please help:

I have a column of dates in the MM/DD/YYYY" format
How can I convert it to the
"YY:DDD" format?

For example, 12/31/2005 would become 05:365 and
01/01/1985 would become 85:01

Thank you!


=TEXT(A1,"yy")&":"&TEXT(A1-DATE(YEAR(A1),1,0),"00")


--ron
 

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