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