Results 1 to 4 of 4

Macro to append values only, not formulas, to the next empty row

Threaded View

  1. #1
    Registered User
    Join Date
    05-21-2013
    Location
    Emeryville, CA
    MS-Off Ver
    Excel 2010
    Posts
    2

    Macro to append values only, not formulas, to the next empty row

    Hi,

    I'm very new to VBA, the macros that I do have are from internet research and are not something I've built from scratch. I have this macro that I've been working with:

    Sub Append_Data_to_Master_List()
    
    Range("b5:f14").Copy Destination:=Range("k" & Rows.Count).End(xlUp).Offset(1)
    
    End Sub
    B5:F14 is refreshed with new data and I need to append the new data to the running list in Column K. The problem is that whenever new data appears in B5:F14, all the data that I've logged in Column K refreshes as well, with the new data in B5:F14, instead of keeping the historical data. I'm wondering if modifying this macro to paste values into column K would fix this problem.

    If anybody could help me with this I'd appreciate it!

    Thanks,

    Christina
    Last edited by arlu1201; 05-23-2013 at 12:06 PM.

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