Re: $$Excel-Macros$$ Re: Row to repeat at the bottom of each page

2013-06-17 Thread VBA VABZ
Hi Sub MyFooter() Dim StrFtr As String, Rng As Range, Sh As Worksheet, c As Range Set Sh = Worksheets("Sheet1") Set Rng = Sh.Range("A51:G51") For Each c In Rng StrFtr = StrFtr & c & " " Next c ActiveSheet.PageSetup.LeftFooter = StrFtr End Sub HTH On Mon, Jun 17, 2013 at 4:26 PM, Ira wrote:

RE: $$Excel-Macros$$ Re: Row to repeat at the bottom of each page

2012-05-17 Thread Siraj Momin (BTG)
Hi I cannot send you the complete file because it is big file due to group restriction I have set example, in the file suppose I want to repeat rows A73:J76 I will be fixing these rows at the last rows of the sheet because my data is large, that I want to repeat at the bottom of the each page.

RE: $$Excel-Macros$$ Re: Row to repeat at the bottom of each page

2012-05-17 Thread Rajan_Verma
Subject: Re: $$Excel-Macros$$ Re: Row to repeat at the bottom of each page Hi, Excel having options for "Rows to Repeat at Top" - Press Alt + P + I, Select the Range and OK. There is no in-build function for Rows to Repeat at Bottom, You can try below codes to show it in foote

Re: $$Excel-Macros$$ Re: Row to repeat at the bottom of each page

2012-05-17 Thread Maries
Hi, Excel having options for *"Rows to Repeat at Top" *- Press Alt + P + I, Select the Range and OK. There is no in-build function for *Rows to Repeat at Bottom*, You can try below codes to show it in footer. Sub MyFooter() Dim StrFtr As String, Rng As Range, Sh As Worksheet, c As Range