If Formula

L

Liz

Based upon an average of 3 numbers I need to figure out how to calculate a
formula based on the average to perform the following:

If there three month average + 50 was <300 - minimum quota is 300 new lines

If the three month average was HIGHER than 2 of the 3 months, the actual
average was used

If the three month average was LOWER than 2 of the three months -

If the average number was < 1000, I added 50 to the average
If the average number was >1000, I added 150 to the average

Any thoughts would be appreciated.
 
L

Luke M

What happens if multiple criteria are met? What if average equals 1000? What
if average is equal to 2 of the 3 months?? All of these are questions you
need to define better. Assuming you wrote your criteria in order of
importance/judgment, this is what you said, in formula form.

=IF(AVERAGE(A2:A4)+50<300,"300 new
lines",IF(AVERAGE(A2:A4)>MEDIAN(A2:A4),AVERAGE(A2:A4),AVERAGE(A2:A4)+IF(AVERAGE(A2:A4)<1000,50,150)))
 
L

Liz

If the criteria is met we are adding 50 or 150 to the average. The formula
you provided does exactly what I needed. Thank you so much!
 

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

Similar Threads

If Function 1
IF statements with multiple criteria 2
Help with Average formula 3
Averageifs & median 1
Help With Formula For Cell Addresses 2
Average of time spent monthly getting DIV/0 error 2
Excel Sumproduct 0
Average IF? 1

Top