I have set a range
Dim vWorkingRange As Range
I'm reading my data as:
Set vWorkingRange = Range(Sheets("My Sheet").Cells(RowStart, ColStart)),Sheets("My Sheet").Cells(RowFinish, ColFinish))
This is a single column of data. Now I want to paste the values
vWorkingRange.Copy Destination:=Sheets("My Sheet").Cells(myRow,myCol)
I'd like to read the values only from the source range as it may have a formula. But when I paste to my destination sheet I get the formula and not the value.
I cant seem to locate how to do this.