Calculating a Date for the Future

  • Thread starter Thread starter Niki6
  • Start date Start date
N

Niki6

I am trying to find a formula to calculate a date in the future. Let me
explain what I mean.... I work for a radio station and I have to form a
prize database. Listeners are only aloud to win once every ninety days.
I have 10 columns that have unfilled dates since a date will only be
entered into that column once the listener has won. Now, I have an 11th
column that I would like to automatically calculate a 90 day period when
the listener will be able to win again. Here is where my problem is, I
want that 11th column to update once I enter a second, third, fourth,
etc date for that specific listener and it always to calculate a 90 day
period from the second, third, fourth, etc date without having to put a
new formula in every time this happens. Can this be done?
 
Pretty sure that if the 11th cell of any row reads "max(range of previous 10
cells)+90", you should be good. It'll take the highest date out of the cells
in the range (which, of course, copy individually to each row and so only
refer to the immediate left 10 cells) and just add 90 days to it.
 
=MAX(A1:J1)+90
should do the trick

extend down the column as far as you need to
using the right hand borrom corner of cell K
 
Assuming your first date column is A and your first row containing
date is 2:

In K2 type:

=IF(A2>0,MAX(A2:J2)+90,"")

Copy this formula down as far as is necessary
 
Thanks!! This did the trick, your awesome!!



bill said:
=MAX(A1:J1)+90
should do the trick

extend down the column as far as you need to
using the right hand borrom corner of cell K
 

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

Back
Top