Count Conditionally Formatted Cells

Tubtechbob

New Member
Joined
Dec 3, 2020
Messages
2
Office Version
  1. 2007
Platform
  1. Windows
I have a worksheet with a 9 column 9 row grid, I conditional formatted this grid to color the cell of the lowest value in each column. However if there are 2 lowest values the same column no cell is colored, the formula I used there is =AND(J10=MIN(J$10:J$18),SMALL(J$10:J$18,2)<>J10) What I'm trying to do now is get a count of those colored cells and store that value in another cell to be used further down the worksheet. is there any way to accomplish this? Thanks in advance. ~Bob
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Aside from the conditional formatting, it sounds like you need a count of occurrences of the smallest value in the column.

=+COUNTIF(J10:J18,MIN(J10:J18))
 
Upvote 0
Aside from the conditional formatting, it sounds like you need a count of occurrences of the smallest value in the column.

=+COUNTIF(J10:J18,MIN(J10:J18))
Actually all that formula does is tell me the occurrences of the lowest value in column J. What I'm looking for in the grid (J10:R18}, the conditional formatting will highlight the lowest values that aren't repeated in color, I need a count of those colored cells.
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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