Results 1 to 4 of 4

Saving by Cells

Threaded View

  1. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Saving by Cells

    try this code in a new module then assign button to it
    Sub save()
    Dim a As String
    Dim b As String
    Dim c As String
    Dim d As String
    a = Sheets("sheet1").Range("a1").Value 'change sheetname and or cells here
    b = Sheets("sheet1").Range("b1").Value
    c = Sheets("sheet1").Range("c1").Value
    d = Sheets("sheet1").Range("d1").Value
    
    ChDir _
    "c:\documents and settings\martin\My Documents" 'put path here  (leave the chdir and this line out to save in curent folder)
    thisfile = a & "_" & b & "_" & c & "_" & d
    ActiveWorkbook.SaveAs Filename:=thisfile   
    End Sub
    Last edited by martindwilson; 07-02-2009 at 07:45 AM.
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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