Conditional Formatting disappears from value's area after filtering the pivot table

ExcelNoob222

Board Regular
Joined
Jun 17, 2020
Messages
77
Office Version
  1. 365
Platform
  1. Windows
Hi all,

The below macro applies to my pivot table but as soon as someone filters on the pivot table the conditional disappears from the values section.

VBA Code:
'   Adds conditional formatting
    Dim MyRange As Range
    Set MyRange = Range("A10:R5000")
    'Adds rules
    MyRange.FormatConditions.Add Type:=xlExpression, Formula1:="=SEARCH(""Total"",$E10)"
        MyRange.FormatConditions(1).Interior.Color = RGB(250, 208, 184)
        MyRange.FormatConditions(1).Font.Bold = True
    MyRange.FormatConditions.Add Type:=xlExpression, Formula1:="=SEARCH(""Total"",$C10)"
        MyRange.FormatConditions(2).Interior.Color = RGB(255, 242, 204)
        MyRange.FormatConditions(2).Font.Bold = True
    MyRange.FormatConditions.Add Type:=xlExpression, Formula1:="=SEARCH(""Total"",$B10)"
        MyRange.FormatConditions(3).Interior.Color = RGB(226, 239, 218)
        MyRange.FormatConditions(3).Font.Bold = True

Any ideas?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,215,647
Messages
6,126,005
Members
449,279
Latest member
Faraz5023

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