Results 1 to 9 of 9

Copy Value From Destination

Threaded View

  1. #1
    Registered User
    Join Date
    06-08-2011
    Location
    Houston
    MS-Off Ver
    2007
    Posts
    4

    Copy Value From Destination

    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) 
    
    LR = .Range("o" & Rows.Count).End(xlUp).Row
        .Range("o2:o" & LR).Copy Destination:=Sheets("ConsolidatedData").Range("j" & Rows.Count).End(xlUp).Offset(1)
    End With
    End Sub
    Last edited by romperstomper; 06-08-2011 at 11:13 AM. Reason: add tags

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1