willyboy58
Technical User
If I have cells in a spreadsheet that are formatted bold or with a specific font, how do I get this formatting to carry over into a Pivot table? I keep losing the formatting when the PT is created.
TIA
Bill
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub FormatPT()
With ActiveSheet.PivotTables(1)
With .RowRange
With .Font
.Size = Range("MyNames")(1).Font.Size
.Bold = Range("MyNames")(1).Font.Bold
End With
End With
End With
End Sub