Code to save workbook in specific location not working

JAB331

New Member
Joined
Jan 11, 2018
Messages
6
I am using the following code and it saves correctly with the right name but not the correct location, is there something obviously not wrong and will it be affected by the fact its a network drive?

Code:
 Private Sub CommandButton1_Click()    ChDir ("S:\Development\Tool Trial Procedure Reports\") ' Directory you need to save the file as xlsm
    Filename = Range("T3").Value & ";" & Range("T5").Value
    ActiveWorkbook.SaveAs Filename:=Filename, FileFormat:=52
End Sub
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Try this (untested):

Code:
 Private Sub CommandButton1_Click()
 Dim Path As String, Filename As String
 
 Path = "S:\Development\Tool Trial Procedure Reports\"
    Filename = Range("T3").Value & ";" & Range("T5").Value
    ActiveWorkbook.SaveAs Path & Filename, FileFormat:=52
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,541
Messages
6,125,413
Members
449,223
Latest member
Narrian

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