• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Need help with If function

HVK1986

New Member
Dear Sir Hui, pls suggest me a formula for the below mentioned data.

if in cell A1 the amount is <25 then in B1 it should display "not eligible", if amount in cell A2 is >=25 and <50 in cell B1 it should come as 50, likewise >=50 but <100 it should come as 60, and >100 it should come as 75.


Pls suggest a formula
 
You seem to be mixing A1 and A2 but the basic layout is:

Code:
=if(A1<25,"not eligible",if(and(a2>=25,a2<50),50,if(and(a2>=50,a2<100),60,100)))
 
HVK1986


Please also use appropriate titles for Posts like

"Need help with If function"


What if I was on 2 weeks holidays?
 
Back
Top