How do I keep Conditional Formatting from a sheet when inserting a pivot table

emmykav

New Member
Joined
Jun 8, 2016
Messages
25
Hello, I have conditional formatting on an Excel sheet, but when I try to pivot on the data, I lose my conditional formatting. Is there a way o keep it?
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
My solution is to create a template with the CF formatting and then apply it with the following macro:

Code:
Sub paste_Formatting()
' ~~ Copy Sheets("Template") and paste CF/formatting to ActiveSheet
Dim wbk As Workbook
  Set wbk = ActiveWorkbook
Dim sht As Worksheet
  Set sht = ActiveSheet
Dim shtTempl As Worksheet
  Set shtTempl = wbk.Sheets("Template")
Dim rng As Range
  Set rng = ActiveCell
  
OptimizeVBA True
  If shtExists(shtTempl.Name, wbk) = False Then
    MsgBox "Template does not exists"
    Exit Sub
  End If
  
  ' ~~ Unhide Template worksheet
  shtTempl.Visible = xlSheetVisible
  ' ~~ Copy | Paste formatting from Template to ActiveSheet
  
  shtTempl.Cells.Copy
  sht.Cells(1, 1).PasteSpecial Paste:=xlPasteFormats
  rng.Select
  
  ' ~~ Hide Template worksheet (VeryHidden)
  shtTempl.Visible = xlSheetVeryHidden
OptimizeVBA False
End Sub

The OptimizeVBA code can be found at Guide to Improving VBA Performance. Faster Excel VBA
The shtExists code can be found at excel - Test or check if sheet exists - Stack Overflow (you'll need to change ThisWorkbook to ActiveWorkbook)

hth
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,866
Messages
6,121,996
Members
449,060
Latest member
mtsheetz

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