Mar 28, 2005 #1 keithb03 Programmer Feb 1, 2005 10 US Is there a procedure within EB that will convert Gregorian dates to Julian format? Thanks, KB
Mar 31, 2005 #2 IknowMe Programmer Aug 6, 2004 1,214 US If your purpose for conversion is to compare dates try this x = datevalue(somedate$) y = datevalue(somotherdate$) then simply compare x and y with < > and = you can use date formats of "01/01/05" "01/01/2005" "Jan 1, 2005" "January 1, 2005" or you can add and subtract days to determine other dates x = datevalue(todaysdate$)+7 now x = one week from today hope this helps Upvote 0 Downvote
If your purpose for conversion is to compare dates try this x = datevalue(somedate$) y = datevalue(somotherdate$) then simply compare x and y with < > and = you can use date formats of "01/01/05" "01/01/2005" "Jan 1, 2005" "January 1, 2005" or you can add and subtract days to determine other dates x = datevalue(todaysdate$)+7 now x = one week from today hope this helps
Apr 1, 2005 #3 calculus Programmer Apr 10, 2003 390 US The question was about Gregorian dates to Julian. I don't know of any conversion for this. You'd have to build it. calculus Upvote 0 Downvote
The question was about Gregorian dates to Julian. I don't know of any conversion for this. You'd have to build it. calculus