Hi
The code below takes several sheets in a Workbook and saves each sheets as its own Workbook. It saves the workbooks in the same directory that the source wookbook is saved. But Id like to prompt the user once to select a folder where all the workbooks will be saved. How do I do this ?
Thank you in advance
The code below takes several sheets in a Workbook and saves each sheets as its own Workbook. It saves the workbooks in the same directory that the source wookbook is saved. But Id like to prompt the user once to select a folder where all the workbooks will be saved. How do I do this ?
Code:
[COLOR=#ff0000]'Maybe prompt the user here for the folder where the workbooks will be saved ???[/COLOR]
For i = 1 To 10
Sheets(i).Copy
SaveDate = Format(Now(), "dd-mmm-yy hhmm")
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs Filename:=Sheets(1).Name & " Holds Report - " & _
SaveDate, AccessMode:=xlExclusive, ConflictResolution:=True
Application.DisplayAlerts = True
ActiveWorkbook.Close
Workbooks("KPI Generator.xlsm").Activate
Next i
Thank you in advance