I need to save a spread sheet to a specific directory using the value of a cell as the file name, the code below refering to the cell value to be used works, but the saved file is saved to the drive I am currently working in and not the directory path in the code below. Any help would be much aprieciated.
Sub savefile()
ActiveWorkbook.SaveAs FileName:="S:\WGSpecChemOps\QC Analytical\Facility 2\CERTS\2003\" & ActiveSheet.Range("I7".Value & ".xls"
End Sub
Cheer Andy
Sub savefile()
ActiveWorkbook.SaveAs FileName:="S:\WGSpecChemOps\QC Analytical\Facility 2\CERTS\2003\" & ActiveSheet.Range("I7".Value & ".xls"
End Sub
Cheer Andy