Calc Diff Between Two Julian Date

  • Thread starter Thread starter saltrm
  • Start date Start date
S

saltrm

Need to calculate difference between 2 julian dates. Worksheet is a
follows:

J-2=Date Ordered
K-2=Date Received
L-2=Lag time

Hope someone can help!!

:confused
 
=ABS(DATE(INT(J2)/1000+IF(J2<30000,2000,1900),1,MOD(J2,1000)) -DATE(INT(K2)/
1000+IF(K2<30000,2000,1900),1,MOD(K2,1000)))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
I got a value of "34391" when I applied the formula. Maybe I did
something wrong when applying?


=ABS(DATE(INT(J2)/1000+IF(J2<30000,2000,1900),1,MOD(J2,1000))
-DATE(INT(K2)/1000+IF(K2<30000,2000,1900),1,MOD(K2,1000)))

That the what I used

MY spreadsheet looks like this

J-2 K-2 L-2
4350 5310 Should read "325"
 
How about:

=DATE((2000+INT(K2/1000)),0,MOD(K2,1000))
- DATE((2000+INT(J2/1000)),0,MOD(J2,1000))
+ 1

(all one cell.)

Just a tip.

It's better to give a small sample of your data in your initial post. It makes
things easier for possible responders.
 
Back
Top