|
Question : Excelhow 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 didnt seem to work. Appreciate any suggestions. Thanks in advance.
|
|
Answer : Excelhow 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
|
|
|
|