How do I calculate # of weeks between 2 dates in excel?

L

Linda

I need to figure out how to calculate future dates in excel in # of weeks.
Is there an easy way to do this?
 
B

Bob Phillips

Just subtract today's date from the future date and divide by 7.

If you only want whole weeks, INT it,

=INT((A2-TODAY())/7)

to the nearest week

=ROUND((A2-TODAY())/7,0)
 
Top