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

Is it possible to use more than two condition in conidtional formatting

Yes

It would be more like:

=And($H2="test",$I2="fail",$T2="Study")

all have to be correct for the condition to trigger


If you want one of the 3 conditions to trigger the CF use:

=Or($H2="test",$I2="fail",$T2="Study")
 
As Hui's post showed, you have an extra "=" in your formula.

Good:

=And($H2="test",$I2="fail",$T2="Study")

Bad:

=And(=$H2="test",$I2="fail",$T2="Study")


All 3 conditions must be met for CF to be triggered.
 
Back
Top