I've got the below code to copy a range of different cells to the next available row in another workbook. The issue is that it's pasting the formula's not the values.
Sub SaveInlife()
Dim wb As Workbook, NR As Long
Set wb = Workbooks.Open("C:\Users\caseys\Downloads\Operations Score Card.xlsx")
NR = Sheets("IN LIFE").Range("A" & Rows.Count).End(xlUp).Row + 1
With ThisWorkbook.Sheets("REPORT")
.Range("AB85").Copy Destination:=wb.Sheets("IN LIFE").Range("A" & NR)
End With
wb.Close savechanges:=True
End Sub