Morning
i'm using the below to save my spreadsheet with a new name and location.
Sub SaveInWithNewName()
Dim NewFN As Variant
' Copy Invoice to a new workbook
ActiveSheet.Copy
ActiveSheet.Shapes("Rounded Rectangle 1").Delete
NewFN = "C:\Users\Fonnie\Dropbox\Ck007 Mechanical\Invoices\" & " " & Range("G2").Value & " " & Range("B11").Value & " " & Range("E11").Value & " " & Range("E12").Value & " " & Range("E2").Value & ".xlsm"
ActiveWorkbook.SaveAs NewFN, FileFormat:=xlOpenXMLWorkbookMacroEnabled
ActiveWorkbook.Close
End Sub
But what i need is when i save my worksheet the formulas in cells (B20:G60) must be saved as values.
can you please assist?
Regards Christelle
i'm using the below to save my spreadsheet with a new name and location.
Sub SaveInWithNewName()
Dim NewFN As Variant
' Copy Invoice to a new workbook
ActiveSheet.Copy
ActiveSheet.Shapes("Rounded Rectangle 1").Delete
NewFN = "C:\Users\Fonnie\Dropbox\Ck007 Mechanical\Invoices\" & " " & Range("G2").Value & " " & Range("B11").Value & " " & Range("E11").Value & " " & Range("E12").Value & " " & Range("E2").Value & ".xlsm"
ActiveWorkbook.SaveAs NewFN, FileFormat:=xlOpenXMLWorkbookMacroEnabled
ActiveWorkbook.Close
End Sub
But what i need is when i save my worksheet the formulas in cells (B20:G60) must be saved as values.
can you please assist?
Regards Christelle