Macro to generate Pdf of all pivot table slicer items. Pivot table connected to OLAP cube.

grumpila

New Member
Joined
Mar 12, 2019
Messages
1
I've followed instructions on this thread : https://www.mrexcel.com/forum/excel-questions/982591-slicer.html,

But it only works on a standalone pivot table, not one connected to an OLAP cube.

Is there any way to generate Pdf files of a pivot table that's connected to an OLAP cube, based on each slicer items ?

Thank you!

Here's the code written by @Domenic, for reference.

Option Explicit

Sub CreatePDFForEachSlicerItem()

Const sSlicerName As String = "Region" 'change the slicer name accordingly

Dim sDestFolder As String
Dim Idx As Long

With Application
.EnableEvents = False
.ScreenUpdating = False
End With

On Error GoTo ErrHandler

sDestFolder = "C:\Users\Domenic\Desktop" 'change the path accordingly
If Len(Dir(sDestFolder, vbDirectory)) = 0 Then
MsgBox sDestFolder & " does not exist.", vbInformation
GoTo ExitTheSub
End If

If Right(sDestFolder, 1) <> "" Then
sDestFolder = sDestFolder & ""
End If

With ActiveWorkbook.SlicerCaches("Slicer_" & sSlicerName)
.ClearManualFilter
With .SlicerItems
For Idx = 1 To .Count
If Idx > 1 Then
.Item(Idx).Selected = False
End If
Next Idx
For Idx = 1 To .Count
ActiveSheet.ExportAsFixedFormat xlTypePDF, sDestFolder & .Item(Idx).Caption & ".pdf"
If Idx < .Count Then
.Item(Idx + 1).Selected = True
.Item(Idx).Selected = False
End If
Next Idx
End With
.ClearManualFilter
End With

MsgBox "Completed...", vbInformation

ExitTheSub:
With Application
.EnableEvents = True
.ScreenUpdating = True
End With

Exit Sub

ErrHandler:
MsgBox "Error " & Err.Number & ": " & Err.Description, vbCritical, "Error"
Resume ExitTheSub

End Sub
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.

Forum statistics

Threads
1,214,874
Messages
6,122,036
Members
449,062
Latest member
mike575

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