+ Reply to Thread
Results 1 to 4 of 4
  1. #1
    Forum Contributor amyxkatexx's Avatar
    Join Date
    11-23-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    Excel 2004 for Mac
    Posts
    128

    [SOLVED] Copy/Paste Special Values From One Workbook To Another

    Hey guys, I have this code that I am using that works perfectly, except I wanted it to paste values only, and since I got this code from someone on this forum and I don't really understand it, I was hoping someone might be able to tell me what to do...

    Code:
    With Workbooks("WC2009_RunningSheet.xls").Worksheets("FTH")
            Range(ActiveCell, "BR2").Copy _
            Destination:=.Cells(.Rows.Count, "A").End(xlUp)(2)
        End With
    Any ideas?
    Last edited by NBVC; 02-22-2010 at 12:51 PM. Reason: Mark Solved per OP request

  2. #2
    Forum Guru JBeaucaire's Avatar
    Join Date
    03-21-2008
    Location
    Bakersfield, CA
    MS-Off Ver
    2010
    Posts
    18,228

    Re: Copy/Paste Special Values From One Workbook To Another

    Try this:
    Code:
    Range(ActiveCell, "BR2").Copy 
    Workbooks("WC2009_RunningSheet.xls").Worksheets("FTH").Cells(Rows.Count, "A").End(xlUp).Offset(2, 0).PasteSpecial xlPasteValues
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    “None of us is as good as all of us” - Ray Kroc
    “Actually, I *am* a rocket scientist.” - JB (little ones count!)

  3. #3
    Forum Contributor amyxkatexx's Avatar
    Join Date
    11-23-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    Excel 2004 for Mac
    Posts
    128

    Re: Copy/Paste Special Values From One Workbook To Another

    I forgot to reply to this but it worked flawlessy, thanks!

  4. #4
    Forum Guru JBeaucaire's Avatar
    Join Date
    03-21-2008
    Location
    Bakersfield, CA
    MS-Off Ver
    2010
    Posts
    18,228

    Re: Copy/Paste Special Values From One Workbook To Another

    If that takes care of your need, be sure to EDIT your original post, click Go Advanced and add the word [SOLVED] to the beginning of the title.

    Glad it worked out for you.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    “None of us is as good as all of us” - Ray Kroc
    “Actually, I *am* a rocket scientist.” - JB (little ones count!)

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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.2.0