robocop1906
Board Regular
- Joined
- Jan 15, 2003
- Messages
- 143
Hello, I'd like to copy the value of the destination vs. the formula in column A2:A. See my code below.
Sub ConsolidateData2()
Dim LR As Long
With Sheets("RawStampData")
LR = .Range("A" & Rows.Count).End(xlUp).Row
.Range("A2:A" & LR).Copy Destination:=Sheets("ConsolidatedData").Range("A" & Rows.Count).End(xlUp).Offset(1)
Sub ConsolidateData2()
Dim LR As Long
With Sheets("RawStampData")
LR = .Range("A" & Rows.Count).End(xlUp).Row
.Range("A2:A" & LR).Copy Destination:=Sheets("ConsolidatedData").Range("A" & Rows.Count).End(xlUp).Offset(1)