Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want copy range("a3:d3")
but I want repat to line 4, 5... how execute a looping For with coordenate? thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Marina
See this small example for row 3 - 10 it will copy to E Sub tetsting() Dim rw As Long For rw = 3 To 10 Range("a" & rw & ":d" & rw).Copy Range("E" & rw) Next rw End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "Marina Limeira" wrote in message ... I want copy range("a3:d3") but I want repat to line 4, 5... how execute a looping For with coordenate? thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I enter formula sum(range+range)*0.15 sumif(range=3) | Excel Discussion (Misc queries) | |||
Excel Addin:Setting the range to the Excel.Range object range prop | Excel Worksheet Functions | |||
Range Question / error 1004: method Range of object Worksheet has failed | Excel Programming | |||
Range.Find returns cell outside of range when range set to single cell | Excel Programming | |||
how to? set my range= my UDF argument (range vs. value in range) [advanced?] | Excel Programming |