Thread: If question
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default If question

Try this with data in A1,B1,C1

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

If this post helps click Yes
---------------
Jacob Skaria


"tss" wrote:

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