Hi,
I have some code which works fine apart from the bit where it copies formulas rather than values across to the new sheet.
What am I missing here?
Sub Quotetracker()Application.ScreenUpdating = False
Sheets("Customer Quote").Range("B11").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(1, 0)
Sheets("Customer Quote").Range("B12").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 1)
Sheets("Customer Quote").Range("B13").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 2)
Sheets("Customer Quote").Range("B14").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 3)
Sheets("Quote Entry").Range("D7").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 4)
Sheets("Customer Quote").Range("B10").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 5)
Sheets("Customer Quote").Range("D58").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 6)
Application.ScreenUpdating = True
End Sub
I have some code which works fine apart from the bit where it copies formulas rather than values across to the new sheet.
What am I missing here?
Sub Quotetracker()Application.ScreenUpdating = False
Sheets("Customer Quote").Range("B11").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(1, 0)
Sheets("Customer Quote").Range("B12").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 1)
Sheets("Customer Quote").Range("B13").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 2)
Sheets("Customer Quote").Range("B14").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 3)
Sheets("Quote Entry").Range("D7").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 4)
Sheets("Customer Quote").Range("B10").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 5)
Sheets("Customer Quote").Range("D58").Copy _
Destination:=Sheets("Quote Tracker").Cells(Cells.Rows.Count, _
1).End(xlUp).Offset(0, 6)
Application.ScreenUpdating = True
End Sub