View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
SiC
 
Posts: n/a
Default Calculate number of weeks between dates in Excel 2000

Hi Darlene,

Basically it's just =(date2-date1)/7 where date2 and date1 are cell
references for your two dates.
=ROUND((date2-date1)/7,0) if you want to round to the nearest whole week
=CEILING((date2-date1)/7,1) if you want to always round up to the nearest
whole week
=FLOOR((date2-date1)/7,1) if you want to always round down to the nearest
whole week
Hope this helps.

-Simon

"Darlene" wrote:

How can I calculate the number of weeks between two dates in different years?
Thanks