Repeat Cell Formula w/out copy/paste?

G

Guest

Hi-

I have a formula starting in Row7 and continuing to the end of the
spreadsheet. How can I copy the formula in Row7, copy and paste and have the
formula used in all additional Rows at the bottom of my sheet?

I tried the nifty Ctrl-Space bar, but it takes Rows 1-6 also, they are
header rows and do not get the formula.

I tried a simple copy/paste, which works, but doesn't continue for
additional rows beyond what I specified in the copy.

I do have the Options set to extend list formats and formulas - maybe this
is not a list?

I'm using 2003.

Thanks in advance.
 
P

Paul Lautman

DTTODGG said:
Hi-

I have a formula starting in Row7 and continuing to the end of the
spreadsheet. How can I copy the formula in Row7, copy and paste and
have the formula used in all additional Rows at the bottom of my
sheet?

I tried the nifty Ctrl-Space bar, but it takes Rows 1-6 also, they are
header rows and do not get the formula.

I tried a simple copy/paste, which works, but doesn't continue for
additional rows beyond what I specified in the copy.

I do have the Options set to extend list formats and formulas - maybe
this is not a list?

I'm using 2003.

Thanks in advance.

I have a utility in my PERSONAL.XLS which I have attached to Ctrl-M. This
takes marked cells and copies them down to the bottom of a table.

Sub copy_down_block()
'Ctrl-M
Range(Selection.Cells(1, 1), Selection.Cells(Cells.Find(What:="*",
SearchDirection:=xlPrevious, SearchOrder:=xlByRows).Row - Selection.Row + 1,
Selection.Columns.Count)).FillDown
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

Top