#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Viewing Data

When others view a spreadsheet, how do I enable them only to see the cells
with data? I would like to keep them from scrolling through the 64,000 rows
of blank worksheet.

Thank you,

Ken S.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Viewing Data

Hide empty rows
--
Gary''s Student - gsnu200812

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Viewing Data

Set the scrollarea to a range using VBA.

Since the scrollarea method does not stick between sessions you will have to
reset it each time you open the workbook.

You may wish to place the code into a WorkBook_Open Sub in ThisWorkbook
module
and specify which worksheet if only one sheet required.

Adjust the sheetname and range to suit.

Private Sub WorkBook_Open()
Sheets("YourSheet").ScrollArea = "A1:M36"
End Sub

Or also in the Thisworkbook module to limit scrollarea on all sheets.

Private Sub Workbook_SheetActivate(ByVal Sh As Object)
With ActiveSheet
.ScrollArea = "A1:M36"
End With
End Sub


Gord Dibben MS Excel MVP



On Wed, 5 Nov 2008 14:54:06 -0800, Ken S
wrote:

When others view a spreadsheet, how do I enable them only to see the cells
with data? I would like to keep them from scrolling through the 64,000 rows
of blank worksheet.

Thank you,

Ken S.


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
Viewing Cell Data Jeff[_12_] Excel Discussion (Misc queries) 11 March 22nd 08 10:29 PM
viewing data pattyf Excel Discussion (Misc queries) 3 February 14th 08 10:19 PM
Help with viewing data - Excel XP Dave F Excel Discussion (Misc queries) 0 November 30th 06 03:47 PM
Help with viewing data - Excel XP Dave Excel Discussion (Misc queries) 0 November 30th 06 03:40 PM
viewing seperate data within worksheet Gate Excel Worksheet Functions 1 March 8th 05 06:42 PM


All times are GMT +1. The time now is 03:08 PM.

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

About Us

"It's about Microsoft Excel"