Question : Excel—how to convert number of days to weeks and days.

I want to express (TODAY()-pastdate) in weeks and days. I tried (roundup-rounddown)*7 to obtain a close enough number of days (for this application), but it didn’t seem to work. Appreciate any suggestions.
Thanks in advance.

Answer : Excel—how to convert number of days to weeks and days.

Hi cwest1,

If your past date is in cell A1, you can use this formula....

    =ROUNDDOWN((TODAY()-A1)/7, 0) & " weeks & " & MOD(TODAY()-A1, 7) & " days"

Regards,

Wayne
Random Solutions  
 
programming4us programming4us