Conditional formatting

OKCIrish

New Member
Joined
Dec 3, 2022
Messages
32
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
Hello,

I need some help trying to figure out this conditional formatting. I've tried looking at other formulas and implementing them to my situation to no avail. I have the conditional formatting set up as to have anything that is greater than the max ID to go red, however if the max ID cell is blank and there are some recordings taken the cell show's up red. I need help with having the conditional formatting highlight cells in red if there is anything above max ID, and no formatting done if the max ID cell is blank.

Book1
ABCDE
1Max IDMax ID
23
3ID TakenID Taken
4Item #Item #
51212
623.2523.25
733.2533.25
84343
953.553.5
106262
1172.572.5
1282.7582.75
1393.2593.25
14103103
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E5:E14Cell Value>$E$2textNO
B5:B14Cell Value>$B$2textNO
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Set up a CndFrmt rule by 'Use a formula....' by first highlighting e5 to e14. Then put in this formula: = (E5>$E$2)*ISNUMBER($E$2)
 
Upvote 0
How about:

Excel Formula:
=AND(B5>$B$2,$B$2<>"")

And:
Excel Formula:
=AND(E5>$E$2,$E$2<>"")
 
Upvote 0

Forum statistics

Threads
1,215,433
Messages
6,124,861
Members
449,195
Latest member
MoonDancer

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