I have this macro that copies that values, but doesnt copy over the table.
If I remove (xlPasteValues) from the macro, it copies over the table without the values.
I have searched for hours on how to get this working correctly and nothing has seemed to work. Please help, thanks.
Code:
Sub OpenReport()
Set NewBook = Workbooks.Add
Workbooks("TMSRULES.xlsm").Worksheets("Sheet1").Range("A115:J178").Copy
NewBook.Worksheets("Sheet1").Range("A1").PasteSpecial (xlPasteValues)
End Sub
If I remove (xlPasteValues) from the macro, it copies over the table without the values.
I have searched for hours on how to get this working correctly and nothing has seemed to work. Please help, thanks.