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

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
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,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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