![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Location: Plano, Texas
Posts: 29
|
I know there has to be a faster way to copy formulas down thousands of rows rather than click and drag.
Any suggestions??? |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Mar 2002
Location: Boston, MA
Posts: 105
|
You could use a macro that asks for the first and last cells and fills them automatically. Something like:
Sub FillMe() Dim LastRow As String FirstCell = Application.InputBox("What is the cell you want to copy?") LastCell = Application.InputBox("What is the last cell you want filled?") Range(FirstCell).Select Range(FirstCell).Copy Range(FirstCell).AutoFill Destination:=Range(FirstCell & ":" & LastCell), Type:=xlFillDefault End Sub If you use it enough, just add a button for it to your toolbar for easy access. |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Apr 2002
Posts: 124
|
Just double click on the dragdown box at the lower right side of the cell. That will copy down to the bottom of the used range.
[ This Message was edited by: cpod on 2002-04-17 09:18 ] |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|