#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 16
Default JULIAN DATES?

I have a spreadsheet that has, what I believe are Julian Dates.

Ex: 20007088
2007090
2007092

these are in a column labled: Date YYYYDDD

Can someone tell me how to format these to MMDDYYYY ?

Thank you!!!! :o))

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default JULIAN DATES?

Right click on the cell, scroll down to format. On the left hand side click
Date. Then on the right hand side choose the format you want the date to
appear as.

"DestinySky" wrote:

I have a spreadsheet that has, what I believe are Julian Dates.

Ex: 20007088
2007090
2007092

these are in a column labled: Date YYYYDDD

Can someone tell me how to format these to MMDDYYYY ?

Thank you!!!! :o))

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 16
Default JULIAN DATES?

This will not work... For 2007088 the results are 3/20/95. This is not
correct.

This seems to be an odd format for Julian Dates. I have tried another
formula that won't work.....

anymore ideas????

Thanks!



"Erin Leva" wrote:

Right click on the cell, scroll down to format. On the left hand side click
Date. Then on the right hand side choose the format you want the date to
appear as.

"DestinySky" wrote:

I have a spreadsheet that has, what I believe are Julian Dates.

Ex: 20007088
2007090
2007092

these are in a column labled: Date YYYYDDD

Can someone tell me how to format these to MMDDYYYY ?

Thank you!!!! :o))

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,440
Default JULIAN DATES?

Look he

http://www.cpearson.com/excel/jdates.htm

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"DestinySky" wrote in message ...
|I have a spreadsheet that has, what I believe are Julian Dates.
|
| Ex: 20007088
| 2007090
| 2007092
|
| these are in a column labled: Date YYYYDDD
|
| Can someone tell me how to format these to MMDDYYYY ?
|
| Thank you!!!! :o))
|


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default JULIAN DATES?

=DATE(LEFT(A1,4),1,RIGHT(A1,3))


"DestinySky" wrote:

I have a spreadsheet that has, what I believe are Julian Dates.

Ex: 20007088
2007090
2007092

these are in a column labled: Date YYYYDDD

Can someone tell me how to format these to MMDDYYYY ?

Thank you!!!! :o))



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default JULIAN DATES?

=DATE(LEFT(A2,4),1,RIGHT(A2,3))

[I assume that your first example should be 2007088 , not 20007088 ?]
--
David Biddulph

"DestinySky" wrote in message
...
I have a spreadsheet that has, what I believe are Julian Dates.

Ex: 20007088
2007090
2007092

these are in a column labled: Date YYYYDDD

Can someone tell me how to format these to MMDDYYYY ?

Thank you!!!! :o))



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default JULIAN DATES?

Your question is not entirely clear on this, but are you looking to change
those "dates" from the format you see to the format you want in the same
column? I'm going to assume yes for that question. The first thing we need
to know is if those entries are real Excel dates simply formatted to look
like that. Click on any one of those "dates" and look at the Formula Bar. Do
you see the same number as in the cell or do you see a real date?

1) If you see a real date, simply change the Custom Format for the column
from YYYYDDD to MMDDYYYY.

2) If you see the same number, then do you want a simple text value in the
cell or do you want an actual date formatted to look like MMDDYYYY. I'm
going to assume you want a real date formatted to look like MMDDYYYY as that
would be the most flexible for future possible use. Put this formula in an
unused column somewhere (it assumes that your first "Julian Date" is in A2;
change to suit your actual conditions)...

=DATE(LEFT(A2,4),1,RIGHT(A2,3))

Now select the column of date values this formula produced and press Ctrl+C.
Now click into A2 and select Edit/PasteSpecial from Excel's menu bar. Click
the Values option button and then click OK. Next, with the cells still
selected, change the Custom Format for them to mmddyyyy.

Rick


"DestinySky" wrote in message
...
I have a spreadsheet that has, what I believe are Julian Dates.

Ex: 20007088
2007090
2007092

these are in a column labled: Date YYYYDDD

Can someone tell me how to format these to MMDDYYYY ?

Thank you!!!! :o))


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default JULIAN DATES?

Surely a real Excel date formatted as YYYYDDD would show as 2007Thu, not as
2007088 ?
--
David Biddulph

"Rick Rothstein (MVP - VB)" wrote in
message ...
Your question is not entirely clear on this, but are you looking to change
those "dates" from the format you see to the format you want in the same
column? I'm going to assume yes for that question. The first thing we need
to know is if those entries are real Excel dates simply formatted to look
like that. Click on any one of those "dates" and look at the Formula Bar.
Do you see the same number as in the cell or do you see a real date?

1) If you see a real date, simply change the Custom Format for the column
from YYYYDDD to MMDDYYYY.

2) If you see the same number, then do you want a simple text value in the
cell or do you want an actual date formatted to look like MMDDYYYY. I'm
going to assume you want a real date formatted to look like MMDDYYYY as
that would be the most flexible for future possible use. Put this formula
in an unused column somewhere (it assumes that your first "Julian Date" is
in A2; change to suit your actual conditions)...

=DATE(LEFT(A2,4),1,RIGHT(A2,3))

Now select the column of date values this formula produced and press
Ctrl+C. Now click into A2 and select Edit/PasteSpecial from Excel's menu
bar. Click the Values option button and then click OK. Next, with the
cells still selected, change the Custom Format for them to mmddyyyy.

Rick


"DestinySky" wrote in message
...
I have a spreadsheet that has, what I believe are Julian Dates.

Ex: 20007088
2007090
2007092

these are in a column labled: Date YYYYDDD

Can someone tell me how to format these to MMDDYYYY ?

Thank you!!!! :o))




  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default JULIAN DATES?

Surely a real Excel date formatted as YYYYDDD would show
as 2007Thu, not as 2007088 ?


LOL ... Surely you are right.

Rick
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Converting Julian Dates to regular dates CDTucson Excel Worksheet Functions 2 June 7th 07 04:20 AM
converting julian dates Dvelasq Excel Worksheet Functions 1 October 25th 06 10:53 PM
Julian dates nick Excel Discussion (Misc queries) 3 May 8th 06 04:48 PM
julian dates Lylesm Excel Discussion (Misc queries) 5 January 5th 06 07:45 PM
julian dates in Exel danielle Excel Worksheet Functions 1 June 23rd 05 12:39 AM


All times are GMT +1. The time now is 04:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"