change Excel VBA: prompt user for folder save location

willgarling

New Member
Joined
Jul 5, 2011
Messages
8
Office Version
  1. 365
Platform
  1. Windows
I have a macro that cycles through all values in a pivot filter and saves individual PDFs for each filtered value. The problem is the macro will save the PDFs in the current excel file location. How do I adjust the macro to prompt the user for the folder location to save the PDFs? The prompt only needs to happen 1 time and then every PDF would be saved in the location selected by the user. Thanks for the help!!

Code:
Sub PrintPivotPages()
'prints a copy of pivot table for each item in page field
'assumes one page field exists
Application.ScreenUpdating = False


DirectoryLocation = ActiveWorkbook.Path


On Error Resume Next
Dim pt As PivotTable
Dim pf As PivotField
Dim pi As PivotItem
Set pt = ActiveSheet.PivotTables.Item(1)
For Each pf In pt.PageFields
For Each pi In pf.PivotItems
        pt.PivotFields(pf.Name).CurrentPage = pi.Name
        


        Name = DirectoryLocation & "\" & Range("B8").Value & ".pdf"
        
        ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, FileName:=Name _
        , Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas _
        :=False, OpenAfterPublish:=False
        
Next
Next pf


Application.ScreenUpdating = True


End Sub
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
the SaveMyFile will ask user for the path, then use your code to make the file...

Code:
Public Sub SaveMyFile()
Dim vFil
vFil = UserPickFile("PDF", "C:\temp\")
If vFil <> "" Then
   MsgBox vFil
   'export to vFile
End If
End Sub

Public Function UserPickFile(ByVal pvFilter, Optional pvPath)
Dim strTable As String
Dim strFilePath As String
Dim sDialog As String, sDecr  As String, sExt As String
Dim i As Integer
Dim vFName
With Application.FileDialog(msoFileDialogSaveAs)   'MUST ADD REFERENCE : Microsoft Office 11.0 Object Library
'msoFileDialogSaveAs
'msoFileDialogFilePicker
    .AllowMultiSelect = False
    .Title = "Save File as"
    .ButtonName = "Save"
    '.Filters.Clear
    '.Filters.Add "Paint", "*.bmp;*.png"
    '.Filters.Add "Acrobat", "*.pdf"
    '.Filters.Add "Excel", "*.xls*"
    For i = 1 To .Filters.Count
        vFName = .Filters(i).Description
        If vFName = pvFilter Then
            .FilterIndex = i
            Exit For
        End If
   Next
    
    .InitialFileName = pvPath
    .InitialView = msoFileDialogViewList    'msoFileDialogViewThumbnail
        If .Show = 0 Then
           'There is a problem
           Exit Function
        End If
    'Save the first file selected
    UserPickFile = Trim(.SelectedItems(1))
End With
End Function
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

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