View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Megan Megan is offline
external usenet poster
 
Posts: 56
Default Difference between two dates rounded up.

Thanks. This works much better as with the other formula I was having
problems when the dates were the same. Thanks again.

"macropod" wrote:

Hi Megan,

Assuming the dates are in A1 & A2, with A2 holding the later date:
=ROUNDUP((A2-A1)/7,0)
will round up the count of weeks to the next nearest week if less than a whole week. If you only want the first week rounded up,
try:
=MAX(1,ROUND((A2-A1)/7,0))

Cheers
--
macropod
[MVP - Microsoft Word]
-------------------------

"megan" wrote in message ...
I would like to calculate the difference in two dates but in weeks. However
if the result is less than 1 week I would like the result rounded up to 1
week. Can anyone help I have had numerous attempts.