Making a footer 2 lines

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Ok currently I have to cells with information. I currenlty have it set to
put one in the left and one in the right footer. I need to put them both in
the let footer one over the other. Any one have any ideas. This is my
current code. Thanks

'Left
Sheets("Report").PageSetup.LeftFooter = Sheets("Data
Entry").Cells(248, 3)
'Right
Sheets("Report").PageSetup.RightFooter = Sheets("Data
Entry").Cells(246, 3)
 
Sheets("Report").PageSetup.LeftFooter = _
Sheets("Data Entry").Cells(248, 3) & chr(10) & _
Sheets("Data Entry").Cells(246, 3)
 

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

Back
Top