Print with cell value

F

Freshman

Dear expert,

In a worksheet, is there a way whenever I print the contents of any parts,
values of 2 fixed cells (say L1 & M1) will always be printed to the row two
rows under the last printed row? Please advise.

Thanks in advance.
 
R

ryguy7272

File > Page Setup > Sheet, you can choose the Print Area here.
Does that help?

Regards,
Ryan---
 
G

Gord Dibben

Excel has no "rows to repeat at bottom".

You could place the contents of L1 & M1 in the Footer.

Sub CellInFooter()
With ActiveSheet
.PageSetup.CenterFooter = .Range("L1").Value _
& " " & .Range("M1").Value
End With
End Sub


Gord Dibben MS Excel MVP
 
F

Freshman

Hi 7227,

Thanks for your help. Regards.

ryguy7272 said:
File > Page Setup > Sheet, you can choose the Print Area here.
Does that help?

Regards,
Ryan---
 

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