Hi all,
the solution is probably pretty simple but i cannot figure it out. The macro saves the workbook sheet as hard copy (whitout formulas). But he is copying the whole sheet. Iam looking for a ranged version (A1-K139)
Please help![]()
Sub Save_To_Excel() Dim wb As Workbook Sheets("Offerte").Copy With ActiveSheet.UsedRange .Value = .Value End With Set wb = ActiveWorkbook wb.SaveAs ThisWorkbook.Sheets("Offerte").Range("M1").Value & ".xlsx" wb.Close SaveChanges:=False End Sub
Bookmarks