I want to copy a selected range to a new workbook without the formulas.
I have buttons on the sheet that run macros and they are also copied. The buttons are placed outside of the defined range, but from what I can see the code selects the whole sheet.
I only need the range that is defined with the formating but no formulas to be copied to a new workbook
Sub CopyToAnotherBook()
ActiveSheet.Copy
Cells.Copy
Range("B1:J58").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub