hello
how can we count how many weeks we have between a specific date in a cell
(A1 for example) and today?

Signature
Croco
Mike H - 30 Apr 2007 12:30 GMT
With today in b1 try this:-
=ABS((B1-A1)/7)
The cell this is in must be formatted as 'Number'
Mike
> hello
>
> how can we count how many weeks we have between a specific date in a cell
> (A1 for example) and today?
Mike H - 30 Apr 2007 12:46 GMT
Croco,
I didn't like the decimal weeks the previous formula gives so try this
instead:-
=INT(ABS((B1-A1)/7))&" Weeks "&MOD(ABS(A1-B1),7)& " Days"
> hello
>
> how can we count how many weeks we have between a specific date in a cell
> (A1 for example) and today?
Bob Phillips - 30 Apr 2007 16:59 GMT
=weeknum(TODAY())-weeknum(A1)
you may want to adjust by 1 and compensate for day of the week.

Signature
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
> hello
>
> how can we count how many weeks we have between a specific date in a cell
> (A1 for example) and today?