+ Reply to Thread
Results 1 to 4 of 4

SaveAs Macro

Hybrid View

  1. #1
    Registered User
    Join Date
    09-10-2010
    Location
    ny
    MS-Off Ver
    Excel 2003
    Posts
    2

    Talking SaveAs Macro

    Hi,

    I'm trying to make a Save As macro that has all of the following:
    * Adds "P-" to the beginning original file name
    * Adds a password to open the file

    Please help!! Thank you in advance!

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: SaveAs Macro

    Hello sumitomo,

    This macro will save the ActiveWorkbook as the original name prefixed with "P-" and adds a password. Change the password in the macro to what you want to use.
    Sub SaveWorkbookAs()
    
      Dim Pwd As String
      Dim WkbName As String
      
        Pwd = "password"
        WkbName = "P-" & ThisWorkbook.Name
      
        ThisWorkbook.SaveAs Filename:=WkbName, Password:=Pwd
        
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    09-10-2010
    Location
    ny
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: SaveAs Macro

    Thanks Leith!

    I can't seem to get the file to save or have a password... maybe its me, lol.

    I am using Excel 2007 if that makes a difference?

  4. #4
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: SaveAs Macro

    Hi sumitomo;

    How are you triggering Leith's Sub()?
    Foxguy

    Remember to mark your questions [Solved] and rate the answer(s)
    Forum Rules are Here

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1