Export from Access to Excel with Password

AndrewKent

Well-known Member
Joined
Jul 26, 2006
Messages
889
Hi there,

I have automated some simple reports within Access to save them in Excel format:

Code:
Function Extract_MissingCCNumbers()
'   =============================================================================================
'   Procedure written by: Andrew Kent
'   =============================================================================================
    DoCmd.OutputTo acOutputQuery, "qryExternalExtract_MissingCC_Edinburgh", _
    acFormatXLS, strReportsPath & "Missing Cost Centre Numbers (Edinburgh - " & strCurrentDate & ").xls"
    DoCmd.OutputTo acOutputQuery, "qryExternalExtract_MissingCC_Glasgow", _
    acFormatXLS, strReportsPath & "Missing Cost Centre Numbers (Glasgow - " & strCurrentDate & ").xls"
    DoCmd.OutputTo acOutputQuery, "qryExternalExtract_MissingCC_Newcastle", _
    acFormatXLS, strReportsPath & "Missing Cost Centre Numbers (Newcastle - " & strCurrentDate & ").xls"
End Function

Is anyone able to help me update this so that when data is exported, the Excel document is password protected.

Kind regards,

Andy
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
You would have to actually automate Excel, open each workbook and save it with a password.
 
Upvote 0
Hi, yeah in the end I ended up extracting the data using VBA in Access then preparing the file using VBA in Excel. Thanks for your help!
 
Upvote 0

Forum statistics

Threads
1,224,607
Messages
6,179,871
Members
452,948
Latest member
UsmanAli786

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