Calculate # of Days from one date to another

J

jscano

May be a simple question, but how to I calculate the number of days from Jan
1, 2004 to a another specific date?

Thanks.
 
R

Ron Rosenfeld

May be a simple question, but how to I calculate the number of days from Jan
1, 2004 to a another specific date?

Thanks.

=A1-B1

or

=A1 - DATE(2004,1,1)

Be sure to format the result as General (or Number).


--ron
 
Top