Mohammad Younous
Member
How I can use specific row in bottom of all page. Like Rows to repeat at top.
Thanks for reply. How I use it.You can't easily
You can use some VBA to setup a Footer automatically
Code:Sub Set_Footer() With ActiveSheet.PageSetup .LeftHeader = Range("A1").Text .CenterHeader = Range("B1").Text .RightHeader = Range("C1").Text End With End Sub
Goto VBA (Alt+F11)
Find the Worksheet that you want it to apply to and select it
Copy/paste the code into the right hand pane
Return to the worksheet (Alt+F11)
Run it by using Alt+F8
select the macro Set_Footer
Run
You can obviously change the references in the macro to suit your file
You now have to save the file as a Macro Enabled workbook *.xlsm
Thanks a lotView attachment 17890
The code above worked as I explained
You will need to add a cell that joins the text together and includes Carriage returns
see attached file
Note the cells at M1:O6
Only change the yellow cells
Press Update when happy