Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can someone point me in the right direction, I can get this to work
when I copy the entire row but I only want to copy a single cell to a cell on the main page. Sheet1 is used as a part list with prices. Sub copyData() Dim rng1 As Range, rng2 As Range Dim cell As Range, rw As Long Dim sh As Worksheet With Worksheets("Sheet1") Set rng1 = .Range(.Cells(1, "A"), .Cells(.Rows.Count, "A").End(xlUp)) End With With Worksheets("node 1&2") Set rng2 = .Range(.Cells(1, "B"), .Cells(.Rows.Count, "B").End(xlUp)) End With rw = 1 For Each cell In rng2 If cell.Value = rng1.Cells(Rows.Count, "A").Value Then rng1.Cells(Rows.Count, "E").Copy Destination:=rng2.Cells(Rows.Count, "E") rw = rw + 1 End If Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how dose filter works to last cell in the column | Excel Discussion (Misc queries) | |||
excel file dose not open | Excel Discussion (Misc queries) | |||
why dose excel return invalid web query | Excel Discussion (Misc queries) | |||
options under tools dose not come up | Excel Worksheet Functions | |||
How can I estimate EC50 in a dose-response graph? | Charts and Charting in Excel |