Hello,
I am trying to fix my Macro so that the Grand Total Row of the Pivot Table is colored in Black and the font is in white.
Here is my Code:
I am trying to fix my Macro so that the Grand Total Row of the Pivot Table is colored in Black and the font is in white.
Here is my Code:
Code:
ActiveSheet.PivotTables("rptInvestment").ColumnGrand
With Selection.Interior
.ColorIndex = 1
End With
With Selection.Font
.Bold = True
.ColorIndex = 2
End With