how to Apply Condition Formatting in Particular Cells At a time ??? (Rules : " <1 " Highlight Cell color to RED After Zero .)

krunal123

Board Regular
Joined
Jun 26, 2020
Messages
169
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
image_2021-03-06_161734.png
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Select the range F6 to F?? to how many rows you want
Then a conditional format rule

=AND( F6<>"",F6=0) - see example below

It will highlight if any other cell also = zero
So you could just use the Total Available as part of the AND

=AND( E6="Total Available",F6=0) - see example below

Book8
BCDEF
5Quantity
6
7
8
9
10
11
12
13total available0
14
15
16
17
18
19
Sheet1
Cell Formulas
RangeFormula
F13F13=SUM(F6:F12)
Cells with Conditional Formatting
CellConditionCell FormatStop If True
F6:F23Expression=AND(F6<>"",F6=0)textNO


Using total available
Book8
BCDEF
5Quantity
6
7
8 
9
10
11
12
13total available0
14
15
16
17
18
19
Sheet1
Cell Formulas
RangeFormula
F8F8=IF(SUM(D8:E8)=0,"",SUM(D8:E8))
F13F13=SUM(F6:F12)
Cells with Conditional Formatting
CellConditionCell FormatStop If True
F6:F23Expression=AND(E6="total available",F6=0)textNO
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,580
Members
448,972
Latest member
Shantanu2024

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