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

Conditional Formating

Faisal

New Member
I have a data containing two columns empid and emp desg .My requirement is to highlight the empid based on emp designation .for instance i need all the account managers id highlighted .
 
Select the EmpID column. I'm assuming it is column A and emp desg is col B. Select Conditional Formatting, new rule, based on formula. Formula is:

=$B2="account manager"


Setup the formatting as desired.

Ok out.
 
Multiple conditional formatting work fine can we apply conditional formation on more then two conditions assuming highlight all the id ( col a) the manager ( col B ) of Accounts department col ( c)
 
Sure thing, just use the AND function.

=AND($B2="account manager",$C2="Accounts")
 
Back
Top