If question

  • Thread starter Thread starter tss
  • Start date Start date
T

tss

I have three columns, A, B and C, I need a quick analysis / IF statement to
determine:
If A is between B and C,"A IS GOOD"
If A is below B, "INCREASE A"
If A is above C, "DECREASE A".

Thanks
 
Try this with data in A1,B1,C1

=IF(A1<B1,"INCREASE A",IF(A1<=C1,"A IS GOOD",IF(A1>C1,"DECREASE A")))

If this post helps click Yes
 
Hi,
try
=if(A1<B1,"INCREASE A",if(A1>C1,"DECREASE A","IS GOOD")

if this helps please click yes, thanks
 
Back
Top