Formula: In cell A1 I manually type the date that I'm adding a new value, in cell B1 I have the Today() formula, and finally in cell C1 I have the formula =YourStartingValue - (5*(B1-A1))
.
Result: The end result is that the value I input into cell C1 gets 5 subtracted from it each new calendar day. I then repeat this step in a new row for each new value that I add.
My question: is there a formula I can use so that I don't have to add the stuff in A1 and B1 each time? It'd save time and make things cleaner. Thanks!
=YourStartingValue - (5*(TODAY()-DATE(2016,1,1)))
whereDATE(2016,1,1)
is the date you have inA1
. As far as I can tell the value inA1
is not predictable and therefore has to be entered each time. - Ralphgoogle-spreadsheet
(if that's possible). But maybe any of the other members here can help you with that. - Ralph