One way is to save that row somewhere As an image, then Give that image in
footer J

 

 

Regards

Rajan verma

+91 7838100659 [IM-Gtalk]

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of Maries
Sent: 17 May 2012 1:23
To: excel-macros@googlegroups.com
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 footer.

 

Sub MyFooter()

    Dim StrFtr As String, Rng As Range, Sh As Worksheet, c As Range

    Set Sh = Worksheets("Sheet1")

    Set Rng = Sh.Range("A20:H20")

    For Each c In Rng

        StrFtr = StrFtr & c & " "

    Next c

    ActiveSheet.PageSetup.LeftFooter = StrFtr

End Sub

-- 

 

  MARIES

Excel Inspiration <http://xcel-inspiration.blogspot.com/> 

 

-- 
FORUM RULES (986+ members already BANNED for violation)
 
1) Use concise, accurate thread titles. Poor thread titles, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
not get quick attention or may not be answered.
 
2) Don't post a question in the thread of another member.
 
3) Don't post questions regarding breaking or bypassing any security
measure.
 
4) Acknowledge the responses you receive, good or bad.
 
5) Cross-promotion of, or links to, forums competitive to this forum in
signatures are prohibited. 
 
NOTE : Don't ever post personal or confidential data in a workbook. Forum
owners and members are not responsible for any loss.
 
----------------------------------------------------------------------------
--------------------------
To post to this group, send email to excel-macros@googlegroups.com

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

------------------------------------------------------------------------------------------------------
To post to this group, send email to excel-macros@googlegroups.com

Reply via email to