conditional formatting help

phuzz

New Member
Joined
Oct 19, 2019
Messages
5
Hi, I need to have rows highlighted that have to meet 3 criteria in a table and was unsure what statement would be best, two have to be a specific text and one has to be above a certain number.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
An example of your data would help but does this work? Row 7 gets highlighted.

Code:
=AND($A2="Dog",$B2="Cat",$C2 > 33)


ABC
1Animal 1Animal 2Number
2DogMole2
3SheepCat4
4DogCat6
5GoatSheep8
6MoleGoat22
7Dog
Cat44
8DogCat33

<tbody>
</tbody>
Sheet1
 
Last edited:
Upvote 0
How about
=AND($E2="Programming",$H2="Good",$G2>80000)
 
Upvote 0
Are the columns correct, as it's difficult to tell from the image?
Also did you select B2:H94 before applying the conditional formatting?
 
Upvote 0
Select A2:F12 & use this formula
=AND($D2="Programming",$F2="Good",$E2>80000)
 
Upvote 0
Yuo're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,560
Messages
6,120,222
Members
448,951
Latest member
jennlynn

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top