Filtering based on Color conditional format

JohanL

New Member
Joined
Apr 18, 2019
Messages
5
Hey guys and girls,
I would like to filter out all rows that do not have a special color in colomn L.
I have found this code, but it seems to work only with Interior.ColorIndex.
Colomn L has conditional formatting in my sheet and though some cells are in red now (based on conditional format), this code will still hide these rows.

My goal is to hide only not colored cells in colomn L: so only hide cell 'No coloring' and do not hide red and green cells.

Can onyone help me out here?


With ActiveSheet
.Rows.Hidden = False

For i = .UsedRange.Rows.Count To 3 Step -1
If .Cells(i, 12).Interior.ColorIndex = -4142 Then .Rows(i).Hidden = True
Next
End With
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
How about
VBA Code:
If .Cells(i, 12).DisplayFormat.Interior.ColorIndex = -4142 Then .Rows(i).Hidden = True
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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