Conditional formula

F

Fwak

I am having trouble coming up with a formula and hope someone here can help
me. I am trying to have a single cell be able to provide one of three
results for a calculation. Example : If the average of cells A1:D1 are less
than 90 then I want a certain number to display in cell F1. If that same
average is between 90.1 and 97 I want it to display a different result in F1.
And if that same average is 95.1 or higher I want the display to be yet
another, different result in F1. I am pulling my hair out trying to figure
how to get 3 different results to display. I can get two, but not the third.
HELP!!
 
P

Pete_UK

Put this in F1:

=IF(AVERAGE(A1:D1)<=90,1,IF(AVERAGE(A1:D1)<=95,2,3))

I presume you meant 95 rather than 97. Substitute whatever values you
want for 1, 2 and 3.

Hope this helps.

Pete
 
R

Roger Govier

Hi

=IF(AVERAGE(A1:D1)<=90,"First result", IF(AVERAGE(A1:D1),<=97,"second
result","third result"))

Change the results to suit. If they are not text, then omit the " "
quotation marks around the answer required.
 
F

Fwak

Pete_UK said:
Put this in F1:

=IF(AVERAGE(A1:D1)<=90,1,IF(AVERAGE(A1:D1)<=95,2,3))

I presume you meant 95 rather than 97. Substitute whatever values you
want for 1, 2 and 3.

Hope this helps.

Pete




Thank you so much!!
 
F

Fwak

Roger Govier said:
Hi

=IF(AVERAGE(A1:D1)<=90,"First result", IF(AVERAGE(A1:D1),<=97,"second
result","third result"))

Change the results to suit. If they are not text, then omit the " "
quotation marks around the answer required.
--
Regards
Roger Govier






Thank you as well Roger!
 

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