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...
Any ideas?Code:With Workbooks("WC2009_RunningSheet.xls").Worksheets("FTH") Range(ActiveCell, "BR2").Copy _ Destination:=.Cells(.Rows.Count, "A").End(xlUp)(2) End With
Last edited by NBVC; 02-22-2010 at 12:51 PM. Reason: Mark Solved per OP request
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 theicon 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!)
I forgot to reply to this but it worked flawlessy, thanks!
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 theicon 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!)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks