How do I add a value to a cell every 30 days?

G

Guest

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

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

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top