Copy Formula Down Column?

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hover the cursor over the bottom right of the cell until it turns into a + then double-click.
 
Upvote 0
Select a cell and look at the border of the cell. In the bottom right of the cell, you will see a small square. If you put your cursor on it, the cursor will turn to a +. If you double click on the black square, it will autofill down to the first blank cell.
 
Upvote 0
That didn't seem to do anything... Maybe I did something wrong :(

Maybe not ... for what I suggested to work there must be a filled column immediately to the left or right of the column you are trying to copy the formula down.
 
Upvote 0
That's what happened, There is no data in the sheet yet.. I was just trying to copy the formula down the ENTIRE COLUMN because the amount of rows the sheet requires is unknown
 
Upvote 0
A little macro

Code:
Sub Fillem()
    Range("C1").AutoFill Destination:=Range("C1:C65536"), Type:=xlFillDefault
End Sub

Change C to your column.
 
Upvote 0
Utradeshow

Try this:

1. Select the whole column by clicking its heading label.
2. Type the formula
3. Press Ctrl+Enter
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,454
Members
448,898
Latest member
drewmorgan128

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top