method 'SaveAs' of object '_Workbook' failed

G

Guest

I created a macro where the code has been password protected.
The macro uses the .SaveAs method and the FileFormat argument is set to
xlText.
This combination of the .SaveAs to xlText and the password protecting of the
macro causes it to fail.

Any idea how to get around this. I do not want the users to have access to
the code.
 
N

NickHK

Kishi,
xlText is a value for the PivotFieldDataType; its value is &HFFFFEFC2.
The values of xlFileFormat that you want to use with .SaveAs are typically:
xlTextMSDOS: &H15
xlTextWindows: &H14

So, fix the value of the file format you are using and see if it helps.

NickHK

P.S. The Object Browser can help you with the arguments/value as well as
showing you which properties/methods/events are available for each object.

xlText is not a valid value
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top