G Guest Feb 12, 2005 #1 I'm trying to create a calculator using Excel where in I add a given value to a cell every month. This is not a financial equation.
I'm trying to create a calculator using Excel where in I add a given value to a cell every month. This is not a financial equation.
J JE McGimpsey Feb 12, 2005 #2 One way: assume you want to add 10 every month, starting one month from today: =DATEDIF("2/11/2005",TODAY(),"m") * 10 or, every 30 days: =INT((TODAY()-DATE(2005,2,11))/30)*10
One way: assume you want to add 10 every month, starting one month from today: =DATEDIF("2/11/2005",TODAY(),"m") * 10 or, every 30 days: =INT((TODAY()-DATE(2005,2,11))/30)*10
G Guest Feb 13, 2005 #3 That certainly appears to be working...THANKS. JE McGimpsey said: One way: assume you want to add 10 every month, starting one month from today: =DATEDIF("2/11/2005",TODAY(),"m") * 10 or, every 30 days: =INT((TODAY()-DATE(2005,2,11))/30)*10 Click to expand...
That certainly appears to be working...THANKS. JE McGimpsey said: One way: assume you want to add 10 every month, starting one month from today: =DATEDIF("2/11/2005",TODAY(),"m") * 10 or, every 30 days: =INT((TODAY()-DATE(2005,2,11))/30)*10 Click to expand...