+ Reply to Thread
Results 1 to 2 of 2

Save Macro w Suggested File Name to Network Drive

  1. #1
    John Michaels
    Guest

    Save Macro w Suggested File Name to Network Drive

    I'm attempting the following macro which saves the file to a network
    drive (with no errors)


    ChDir "J:\"

    ActiveWorkbook.SaveAs Filename:="J:\User.xls", _
    FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
    ReadOnlyRecommended:=False, CreateBackup:=False
    ThisWorkbook.Close savechanges:=True

    End Sub


    so that the file will refer to a cell within the worksheet for the name
    of the file to be saved to the same network drive


    Range("B30").Select

    ChDir "J:\"

    ActiveWorkbook.SaveAs Filename:=ActiveCell.Value,
    FileFormat:=xlNormal, _
    Password:="", WriteResPassword:="", ReadOnlyRecommended:=False,
    _
    CreateBackup:=False

    ThisWorkbook.Close savechanges:=True

    but as written, it saves to 'My Documents' vs the network drive. I'm
    assuming that the "network drive letter" needs to be included with
    [Filename:=ActiveCell.Value] but I've not been able to figure out how
    to do it. Any help would be greatly appreciated!


  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
    Hello John,

    Try setting the drive first then the directory.

    ChDrive "J"
    ChDir("J:\")

    That should solve the problem.

    Sincerely,
    Leith Ross

+ 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