Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is the current macro that I am using. This would work if it would paste
starting at W. I currently use it to populate A thru V from different worksheets. I have changed the names of the worksheets but have yet to be able to get it to paste starting at W. The specific line that has been causing me issues was line 9 I believe. Line: oCell.EntireRow.Copy Destination:=Sheets("PTR").Range("W" & Rows.Count).End(xlUp).Offset(1, 0) This line should paste all of the reference data line into PTR starting at W. Can you assist with this? Sub Copy2() Dim Rng As Range, Rng1 As Range, MyCell As Range, oCell As Range, i As Long Set Rng = Sheets("Reference Data").Range("A1:A" & Sheets("Reference Data").Range("A" & Rows.Count).End(xlUp).Row) Set Rng1 = Sheets("PTR").Range("A1:A" & Sheets("PTR").Range("A" & Rows.Count).End(xlUp).Row) i = 0 For Each MyCell In Rng1 For Each oCell In Rng If oCell.Value = MyCell.Value Then oCell.EntireRow.Copy Destination:=Sheets("PTR").Range("A" & Rows.Count).End(xlUp).Offset(1, 0) i = i + 1 End If Next oCell Next MyCell i = 0 ' Referencedata Macro ' ' Keyboard Shortcut: Ctrl+b End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How I write "if cell value =1, copy entire row & paste at dest. | Excel Programming | |||
recognize the text within a cell and copy/paste whole line to nex. | Excel Programming | |||
want to copy entire text box and paste in new cell | Excel Discussion (Misc queries) | |||
Copy entire columns starting from a certain cell down | Excel Programming | |||
How to indicate in formula to choose the entire column starting from a specified cell? | Excel Discussion (Misc queries) |