Sep 24 2023 06:52 AM
I'm trying to have a starting monthly amount (Cell B10 $33,526) and have it reduce X amount (Cell C10 $628.83) every month on a set day (Cell E10 $32,869.95). While I've been able to get it to a point of reducing that amount on the 1st day of the month, I need cell E10 to replace the starting monthly amount in cell B10 and I haven't been able to figure that out as it ruins the formula since it needs something to reference.
I am trying to do this without having to list each month out if possible.
Thanks,
Josh
Sep 24 2023 07:02 AM
SolutionI'd enter the start date in a cell, for example A10. You can then use the formula
=B10-DATEDIF(A10,TODAY(),"m")*C10
Sep 24 2023 07:24 AM