Fill Out a Column automatically

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Fill down till the next line the prices

Right now I have to fill it out manually

Is the clip not much more clearer?
 
Upvote 0
I never like clicking on links. Your explanation is still not clear to me what your wanting.
You gave no specific details.
Like sheet names column numbers etc.
But maybe someone else here at Mr. Excel will click on your link and see your image and understand what your needs are.

Not sure what fill down to next line means.

Are you saying if you enter Cat in a cell you want cat also entered into below cell.
 
Upvote 0
How about
Code:
Sub FillDownPrice()
   With Range("[COLOR=#ff0000]Table1[Price][/COLOR]")
      .SpecialCells(xlBlanks).FormulaR1C1 = "=r[-1]c"
     [COLOR=#0000ff] .Value = .Value[/COLOR]
   End With
End Sub
Change table & column name to suit.
If you don't want hard values remove the part in blue
 
Upvote 0
Thanks for your help

What to you mean by "Change table & column name to suit."

my Sheet is called "Sheet1" & it's in column E with The hadder of the column is "Price"

There is no table
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,270
Messages
6,171,102
Members
452,379
Latest member
IainTru

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