1

Good Day,

Please let me know what is the mistake I made on this formula.

=IF(A6=TRUE,I6,0,IF(B6=TRUE,I6*1.2,I6))

basically what I want to do is, when A6 is true then J6 = I6 and if B6 is also true the value on J6 will be I6*1.2 if not it will remain as J6 = I6 .

Please see screenshot below enter image description here

1
  • An IF statement only takes 2 a TRUE our false evaluation. Your second IF needs to be a separate. Commented Feb 18, 2016 at 6:28

3 Answers 3

1

=IF(A6=TRUE,I6,0)*IF(B6=TRUE,1.2,1) Or =IF(A6=False,0,IF(B6=TRUE,I6*1.2,I6))

Sign up to request clarification or add additional context in comments.

1 Comment

BRILLIANT. thank you very much! it works. so basically what I need to do is "Multiply" if the statement is true. thank you so much
0

=IF(A6=TRUE, IF((B6=TRUE),I6*1.2, I6),0)

If A6 is TRUE then we check if also B6 is TRUE in the first IF condition. It's like this:

if(A6=TRUE)
{
    if(B6=TRUE)
    {
        I6*1.2
    }
    else
    {
        I6
    }
}
else
{
    0
}

1 Comment

Thank you for giving time on answering my query how ever it doesn't work. thanks again
0
=IF(AND(A6=TRUE,B6=TRUE),I6*1.2,I6)

2 Comments

thanks for answering, however the if A6 is false J6 still keeps the value from I6.
What should happen if A6 is not true.. is it will be J6 = I6 ??

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.