Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I would appreciate some help with the following. I am looking for some VBA code that will copy the formula in a selected cell and then paste the formula down x number of rows. Thanks, Steve |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this code where I am copying the contents of B4 on Sheet1 down 10 more
cells below it. NumberOfCopies = 10 With Worksheets("Sheet1").Range("B4") .Copy .Offset(1).Resize(NumberOfCopies, 1) End With Rick wrote in message ... Hello, I would appreciate some help with the following. I am looking for some VBA code that will copy the formula in a selected cell and then paste the formula down x number of rows. Thanks, Steve |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy cells to variable number of rows | Excel Discussion (Misc queries) | |||
copy down with variable number of rows | Excel Discussion (Misc queries) | |||
Copy a selected number of rows | Excel Discussion (Misc queries) | |||
Copy Formula loop based on number of rows w/ data in a col B. | Excel Programming | |||
Copy Paired Info to Different number of Rows | Excel Programming |