IF need to add a third value

G

GMv1

my formula is =IF(B5>=C5,"G","Y") I really need to add a third value of "R"
if the logical test exceeds a value beyond what is in the current formula.
Thanks in advance for your assistance!
 
E

Emece

Hi,

You can use as many if() functions as needed.

For example, =If(B5>=C5,"G",If(B5>=D5,"R",....,"Y")) and so on.

Hope this helps

Regards,
Emece.-
 
F

Fred Smith

A little more information would have been useful, but you probably want
something like:
=IF(B5>=C5,"G",IF(B5>=D5,"Y","R"))

Regards
Fred
 
G

GMv1

Thanks, I tried that and it is not working, here is what I have done. I get
the "G" and the "Y" but no "R".

Actual Target G/Y/R
100.00% 99.90% G
97.63% 99.50% Y
60.00% 94.50% R

=IF(B5=99.5%,"G",IF(B5<99.4%,"Y",IF(B5<98%,"R")))

97.63% is cell B5
 
B

Bernard Liengme

Look at the last data value:60%
Now 'play computer" with =IF(B5=99.5%,"G",IF(B5<99.4%,"Y",IF(B5<98%,"R")))
1) 60% is not equal to 99.5 so we go to the next stage
2) 60% is les than 99.4% so we print Y and exit formula

Not try it with =IF(B5=99.5%,"G",IF(B5<98%,"R",IF(B5<99.4%,"Y")))
1) 60% is not equal to 99.5 so we go to the next stage
2) 60% is les than 98% so we print R and exit formula

It is important to do the test in the required order
best wishes
 
G

GMv1

This worked Thanks!

As a side note this forum has been very helpful to me over the last few
weeks and I just want to thank everyone for all of their assistance!
 

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