Add data every 14 days?

G

Guest

Hi,

I need to update the data in a specific cell whenever 14 days has passed.
That is I want to add a nominated $ amount every 14 days. I use the formula
=A21-Start_date to determine how many days have passed from the start date.
The cell that shows this updated data is not the one containing any formulas.
Not every day is displayed but I just need to add this amount whenever 14
days have passed.
 
T

T. Valko

Try this:

C2 = amount to add every 14 days
D2 = start date
A21 = end date (after this date the formula will stop adding)

I'm assuming the start date will not be a date in the future.

=C2*INT((MIN(TODAY(),A21)-D2)/14)

Format cell as GENERAL or NUMBER
 

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