Repeating cells at bottom

G

Gord Dibben

Excel has no "rows to repeat at bottom" feature.

You either copy the row or cells to just above pagebreaks or add the cells to
the Footer.

For adding a cell value to a Footer you will need a macro.

Sub CellInFooter()
With ActiveSheet
.PageSetup.CenterFooter = .Range("A1").Value
End With
End Sub


Gord Dibben MS Excel MVP
 

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