Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
what's the best way to copy a non-contiguous row of formulas one row below it.
for example, A10, c10, e10:h10 so they end up in row 11 i tried union but didn't get it to work. -- Gary |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Insert a row above.
"Gary Keramidas" <GKeramidasATmsn.com schreef in bericht ... what's the best way to copy a non-contiguous row of formulas one row below it. for example, A10, c10, e10:h10 so they end up in row 11 i tried union but didn't get it to work. -- Gary |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub AAA()
Dim ar As Range For Each ar In Range("A11").Range("A1,C1,E1:H1").Areas ar.FillDown Next End Sub -- Regards, Tom Ogilvy "Gary Keramidas" <GKeramidasATmsn.com wrote in message ... what's the best way to copy a non-contiguous row of formulas one row below it. for example, A10, c10, e10:h10 so they end up in row 11 i tried union but didn't get it to work. -- Gary |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks for that, tom
-- Gary "Tom Ogilvy" wrote in message ... Sub AAA() Dim ar As Range For Each ar In Range("A11").Range("A1,C1,E1:H1").Areas ar.FillDown Next End Sub -- Regards, Tom Ogilvy "Gary Keramidas" <GKeramidasATmsn.com wrote in message ... what's the best way to copy a non-contiguous row of formulas one row below it. for example, A10, c10, e10:h10 so they end up in row 11 i tried union but didn't get it to work. -- Gary |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy formula question | Excel Worksheet Functions | |||
Copy Formula Question | Excel Discussion (Misc queries) | |||
I copy a formula and the results copy from the original cell | Excel Discussion (Misc queries) | |||
Copy Formula with Linked Cells - Validation Question | Links and Linking in Excel | |||
Copy/Paste how to avoid the copy of formula cells w/o calc values | Excel Discussion (Misc queries) |