save file name based on 2 cell references , ask to save as a xlsm or xls to a specific location

Trevor3007

Well-known Member
Joined
Jan 26, 2017
Messages
667
Office Version
  1. 365
Platform
  1. Windows
hekko,

I have the following code :

VBA Code:
Private Sub filename_cellvalue()
Dim Path As String
Dim filename As String
Path = "C:\Users\user\Documents\Vista Mileage\Send to fleet manager\"
filename = Range("jb7").Value & Range("e2").Value & Range("e4").Value
ActiveWorkbook.SaveAs filename:=Path & filename & ".xls", FileFormat:=xlNormal
End Sub

however, users are asking if they can have the option to save as a standard or macro based workbook & to specified location too?

my VB is very limited & therefore reaching out top mr excl for help.

many thanks in advance
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Perhaps research msoFileDialogFolderPicker. However, you will need a way to get the file extension needed by the user. Option buttons in a frame on a userform? Value in a sheet cell?
 
Upvote 0
Found some dialog code in a wb I have and added it to yours. Needs adapting to your situation, but here's the gist of what I'd do:
VBA Code:
Private Sub filename_cellvalue()
Dim strPath As String, strFile As String

strPath = "C:\Users\user\Documents\Vista Mileage\Send to fleet manager\"
strFile = Range("jb7") & Range("e2") & Range("e4")

With Application.FileDialog(msoFileDialogFolderPicker)
  .InitialFileName = strPath 'edit strPath value to suit
  If .Show Then
    strPath = .SelectedItems(1)
  Else
    MsgBox "Folder selection was cancelled"
    Exit Sub
  End If
End With
    
strPath = strPath & "\" & strFile & ".xls"
''Debug.Print strPath

ActiveWorkbook.SaveAs Filename:=strPath & ".xls", FileFormat:=xlNormal

End Sub
What's missing is how to get the option of xls or xlsm, unless you have that in one of those cell references.
 
Upvote 0
Solution
1649009592537.png


many thanks for your help, got the above error?
 
Upvote 0
Always state what line raised the error - nice that you provided the message and number though.
Perhaps put a break point at the first line and step through the code (F8) and check your variable values after each line is executed (before the error causing line if possible). Where did you put that code? If not in a sheet module and the sheet is not protected, then the cause is likely an invalid range reference.
 
Upvote 0
hi,

many thyanks.
found the problem , cell ref was the issue...many thanks again
 
Upvote 0
you're welcome and thanks for choosing that solution.
 
Upvote 0
Found some dialog code in a wb I have and added it to yours. Needs adapting to your situation, but here's the gist of what I'd do:
VBA Code:
Private Sub filename_cellvalue()
Dim strPath As String, strFile As String

strPath = "C:\Users\user\Documents\Vista Mileage\Send to fleet manager\"
strFile = Range("jb7") & Range("e2") & Range("e4")

With Application.FileDialog(msoFileDialogFolderPicker)
  .InitialFileName = strPath 'edit strPath value to suit
  If .Show Then
    strPath = .SelectedItems(1)
  Else
    MsgBox "Folder selection was cancelled"
    Exit Sub
  End If
End With
   
strPath = strPath & "\" & strFile & ".xls"
''Debug.Print strPath

ActiveWorkbook.SaveAs Filename:=strPath & ".xls", FileFormat:=xlNormal

End Sub
What's missing is how to get the option of xls or xlsm, unless you have that in one of those cell references.
Hello. This is the code I wrote to save the file name as 2 cell values in a specific location. One of the cell values is a date and the other is a string variable. This code was supposed to be activated once the save command button I created is clicked. I keep on getting errors. How can I proceed?

Private Sub CommandButton1_Click()
Dim Path As String
Dim FileName1 As String
Dim FileName2 As String
Path = “C:\inventory\”
FileName1 = Range(“A1”)
FileName2 = Range(“B1”)
ActiveWorkbook.SaveAs Filename:=Path & FileName1 & “-” & FileName2 & “.xls”, FileFormat:=xlNormal
End Sub

Please help. Ps I am very new to VBA code
 
Upvote 0
You need to start your own thread - this is called hijacking the thread.
- if OP comes back seeking further help, their thread likely has gone off the rails by helping others.
- others who think this thread is being taken care of won't see your posts, especially when it's marked as solved

When you start your own thread, if you want to increase your chances of getting a solution
- post code in code tags (use vba button on posting toolbar) and try to use proper indentation.
- always provide error number and its message. Just "I get an error" and "it doesn't work" is of no help to others who would try to help you.
Good luck!
 
Upvote 0

Forum statistics

Threads
1,215,088
Messages
6,123,057
Members
449,091
Latest member
ikke

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