You can format the Pivot Table how you like, but when it is refreshed the formatting will be lost.
The easiest method is to record a macro of the formatting to be applied, and then run the macro when the Pivot Table is updated.
Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
' Macro here
End Sub