Reverting to a date

R

Ronbo

I am looking for a formula that will use todays date and
revert the cell date to the 1st of last month. i.e.
6/7/2004 would = 5/1/2004.

Thanks for any help.
 
R

Ron Rosenfeld

I am looking for a formula that will use todays date and
revert the cell date to the 1st of last month. i.e.
6/7/2004 would = 5/1/2004.

Thanks for any help.

With a Date in A6,
=A6-DAY(A6)-DAY(A6-DAY(A6))+1

or for today:

=TODAY()-DAY(TODAY())-DAY(TODAY()-DAY(TODAY()))+1


--ron
 
Top