Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a long list of Julian dates that are formatted as follows:
3300 1296 0346 The first number is the year, i.e. 2003, 2001, 2000. The next three numbers are the numeric equivalent of where that date falls in the year, i.e. 300=Oct 27, 296=Oct 23, and 346=Dec 12. Excel talks about how to convert to a Julian date, but I have not found how to go from a Julian date to a regular date that I am used to seeing. Many thanks, Jessica Nelson |
#2
![]() |
|||
|
|||
![]()
That is not real Julian dates, for your problem you can go to
http://www.cpearson.com/excel/jdates.htm real Julian dates is the number of days that have passed since noon on January 1st, 4713 B.C. Regards, Peo Sjoblom "Jessica" wrote: I have a long list of Julian dates that are formatted as follows: 3300 1296 0346 The first number is the year, i.e. 2003, 2001, 2000. The next three numbers are the numeric equivalent of where that date falls in the year, i.e. 300=Oct 27, 296=Oct 23, and 346=Dec 12. Excel talks about how to convert to a Julian date, but I have not found how to go from a Julian date to a regular date that I am used to seeing. Many thanks, Jessica Nelson |
#3
![]() |
|||
|
|||
![]()
=DATE(2000+LEFT(A1),1,RIGHT(A1,3)+0)
HTH Jason Atlanta, GA -----Original Message----- I have a long list of Julian dates that are formatted as follows: 3300 1296 0346 The first number is the year, i.e. 2003, 2001, 2000. The next three numbers are the numeric equivalent of where that date falls in the year, i.e. 300=Oct 27, 296=Oct 23, and 346=Dec 12. Excel talks about how to convert to a Julian date, but I have not found how to go from a Julian date to a regular date that I am used to seeing. Many thanks, Jessica Nelson . |
#4
![]() |
|||
|
|||
![]()
Jessica
=DATE(IF(0+(LEFT(A1,1))<30,2000,1900)+LEFT(A1,1),1 ,RIGHT(A1,3)) Although for 0346 I get December 11th, 2000 Probably due to 2000 being a leap year. For more on working with Julian dates see Chip Pearson's site. The formula above is modified from one of his. http://www.cpearson.com/excel/jdates.htm Gord Dibben Excel MVP On Wed, 1 Dec 2004 13:15:07 -0800, "Jessica" wrote: I have a long list of Julian dates that are formatted as follows: 3300 1296 0346 The first number is the year, i.e. 2003, 2001, 2000. The next three numbers are the numeric equivalent of where that date falls in the year, i.e. 300=Oct 27, 296=Oct 23, and 346=Dec 12. Excel talks about how to convert to a Julian date, but I have not found how to go from a Julian date to a regular date that I am used to seeing. Many thanks, Jessica Nelson |
#5
![]() |
|||
|
|||
![]()
On Wed, 01 Dec 2004 16:01:25 -0800, Gord Dibben <gorddibbATshawDOTca wrote:
... 0+(LEFT(A1,1))<30 ... Uh, what could be in A1 that would make that False? :-)) --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date updates from worksheet to chart & changes date to a date series! Help!! | Charts and Charting in Excel |