Hi,
I am trying to copy only the values (NOT the formulas) from one location to another. My current code is:
With Sheets("Main Page")
.Range("G12", .Range("G" & Rows.Count).End(xlUp)).Copy _
Sheets("Comparison").Range("B" & Rows.Count).End(xlUp)(2)
End With
Obviously, this...