formula copy question

  • Thread starter Thread starter Gary Keramidas
  • Start date Start date
G

Gary Keramidas

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.
 
Sub AAA()
Dim ar As Range
For Each ar In Range("A11").Range("A1,C1,E1:H1").Areas
ar.FillDown
Next
End Sub
 
thanks for that, tom

--


Gary


Tom Ogilvy said:
Sub AAA()
Dim ar As Range
For Each ar In Range("A11").Range("A1,C1,E1:H1").Areas
ar.FillDown
Next
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top