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

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
An example of your data would help but does this work? Row 7 gets highlighted.

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


ABC
Animal 1Animal 2Number
DogMole
SheepCat
DogCat
GoatSheep
MoleGoat
Dog
Cat
DogCat

<tbody>
[TD="align: center"]1[/TD]

[TD="align: center"]2[/TD]

[TD="align: right"]2[/TD]

[TD="align: center"]3[/TD]

[TD="align: right"]4[/TD]

[TD="align: center"]4[/TD]

[TD="align: right"]6
[/TD]

[TD="align: center"]5[/TD]

[TD="align: right"]8[/TD]

[TD="align: center"]6[/TD]

[TD="align: right"]22[/TD]

[TD="align: center"]7[/TD]

[TD="align: right"] 44 [/TD]

[TD="align: center"]8[/TD]

[TD="align: right"]33[/TD]

</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,223,888
Messages
6,175,206
Members
452,618
Latest member
Tam84

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