Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default Repeating Header

Is there a way to have a spreadsheet automatically repeat the header every 25
rows without using the Freeze Frame?

Reason: the users of some huge spreadsheets need the header repeated for
expediency in looking things up and troubleshooting entries.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 290
Default Repeating Header

John,

I dont know of a way except when printing you can select a row to
repeat at top.....for just when viewing the spreadsheet I only know of
freeze panes that would do this for you.

Why can you not use frozen panes?

Duncan


john d wrote:

Is there a way to have a spreadsheet automatically repeat the header every 25
rows without using the Freeze Frame?

Reason: the users of some huge spreadsheets need the header repeated for
expediency in looking things up and troubleshooting entries.


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Repeating Header

Not without adding it.

Freeze Panes always works well for me. what's the problem?

--
Regards,
Tom Ogilvy

"john d" wrote:

Is there a way to have a spreadsheet automatically repeat the header every 25
rows without using the Freeze Frame?

Reason: the users of some huge spreadsheets need the header repeated for
expediency in looking things up and troubleshooting entries.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Repeating Header

Is there a way to automate the Freeze Frame function so it loads when the
speadsheet opens?

"Tom Ogilvy" wrote:

Not without adding it.

Freeze Panes always works well for me. what's the problem?

--
Regards,
Tom Ogilvy

"john d" wrote:

Is there a way to have a spreadsheet automatically repeat the header every 25
rows without using the Freeze Frame?

Reason: the users of some huge spreadsheets need the header repeated for
expediency in looking things up and troubleshooting entries.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Repeating Header

Private Sub Workbook_Open()
With ThisWorkbook
.Worksheets(1).Activate
.Worksheets(1).Range("A1").Select
.Worksheets(1).Rows(2).Select
ActiveWindow.FreezePanes = True
End With
End Sub

put this in the Thisworkbook module of your workbook.

Change it to reflect your actual situation.

--
Regards,
Tom Ogilvy

"jduran" wrote:

Is there a way to automate the Freeze Frame function so it loads when the
speadsheet opens?

"Tom Ogilvy" wrote:

Not without adding it.

Freeze Panes always works well for me. what's the problem?

--
Regards,
Tom Ogilvy

"john d" wrote:

Is there a way to have a spreadsheet automatically repeat the header every 25
rows without using the Freeze Frame?

Reason: the users of some huge spreadsheets need the header repeated for
expediency in looking things up and troubleshooting entries.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 290
Default Repeating Header

Private Sub Workbook_Open()
Range("A2").Select
ActiveWindow.FreezePanes = True
End Sub


That should do it, test though as i dont know how big your header is


Duncan


jduran wrote:

Is there a way to automate the Freeze Frame function so it loads when the
speadsheet opens?

"Tom Ogilvy" wrote:

Not without adding it.

Freeze Panes always works well for me. what's the problem?

--
Regards,
Tom Ogilvy

"john d" wrote:

Is there a way to have a spreadsheet automatically repeat the header every 25
rows without using the Freeze Frame?

Reason: the users of some huge spreadsheets need the header repeated for
expediency in looking things up and troubleshooting entries.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Repeating Column header for each row jamex Excel Discussion (Misc queries) 5 April 29th 06 09:42 PM
set up a repeating header or footer to entire workbook M2PM2 Excel Programming 2 January 16th 06 03:08 AM
Header - stop repeating on every page! sararose27 Excel Discussion (Misc queries) 2 February 17th 05 10:41 PM
Repeating header/footers for excel sweetd Excel Worksheet Functions 3 December 17th 04 10:29 AM
how do I permanetly add custom header to excel header list? GARY Excel Discussion (Misc queries) 1 December 15th 04 08:52 PM


All times are GMT +1. The time now is 02:45 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"