View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
GMv1 GMv1 is offline
external usenet poster
 
Posts: 8
Default IF need to add a third value

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




"Emece" wrote:

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.-

"GMv1" wrote:

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!