M
Michael Malinsky
If your end date is in A1, then in B1 use:
=a1-365
=a1-365
Frank Kabel said:maybe something like the following in B1
=DATE(YEAR(A1)-1,MONTH(A1),DAY(A1))
and copy down for all rows ....
Reread the OP's specs. The start date is *not* the same day of the month,
though that means it's 366 rather than 365 days previous (aside from leap
years). While the formula above could be adapted to
=DATE(YEAR(A1)-1,MONTH(A1),DAY(A1)-1)
that's a lot of function calls. It's possible
=A1-366-(DAY(A1)=DAY(A1-366))
would be sufficient.