A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
There is no command in the PivotTable area to do that. Normally you would select the pivot table and copy, then paste as values. You could use a macro for that.
Sub ConvertPT()
On Error Resume Next
For Each ws In Worksheets
If ws.Name <> "Main" Then
ws.Activate
ActiveSheet.PivotTables(1).PivotSelect "", xlDataAndLabel, True
If Err <> 0 Then
Err.Clear
Else
Selection.Copy
[A1].Select
Selection.PasteSpecial Paste:=xlPasteValues
End If
End If
Next ws
End Sub
This macro convert all pivot table created by the Report Filter Pages command to values skipping the sheet called Main. You would need to modify that - I'm just assuming you have the source pivot table on a sheet called Main. You can exclude other sheet with a similar idea.
If this answer solves your problem, please check, Mark as Answered. If this answer helps, please click the Vote as Helpful button. Cheers Shane Devenshire