Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
tomcheesewright
 
Posts: n/a
Default How do I limit the visible rows in Excel?

I want to hide everything in a worksheet except for the table into which I am
asking others for input. Columns are easy, but how can I hide ALL the rows
below my chart? I could colour them out in black, that would lead to
printing issues.

Help please!
  #2   Report Post  
Peter Rooney
 
Posts: n/a
Default

Tom,

One way I like to restrict access is by defining a scroll area thus:

Sub DefineScrollArea()
ActiveSheet.ScrollArea = "MyCellRange"
End Sub

Once you run this macro, you can only move the cursor to a cell within this
range.
You can also use cell addressses instead of the "MyCellrange" range name

Sub DefineScrollArea()
ActiveSheet.ScrollArea = "B5:G25"
End Sub

To turn this function off, use a macro like this:

Sub ResetScrollArea()
Worksheets("Database").ScrollArea = ""
End Sub

To hide the contents of worksheet cells, select them, then go into Format
Cells Number Custom and enter ;;; (three semicolons) in the type box.

This will hide everything in the delected cells without you having to change
the colours. To reset this, reset the cell format to general, or something
like that.

You can also hide rows by selecting them the clicking Format Rows Hide.

Hope this helps

Pete





"tomcheesewright" wrote:

I want to hide everything in a worksheet except for the table into which I am
asking others for input. Columns are easy, but how can I hide ALL the rows
below my chart? I could colour them out in black, that would lead to
printing issues.

Help please!

  #3   Report Post  
paul
 
Posts: n/a
Default

set the print area fileprintareaset print area to incluse only your chart
and on the screen select your table then on the std toolbar click on the zoom
box and select "selection".If you want to hide data highlight the rows you
want to hide on the very left margin right clickhide
--
paul
remove nospam for email addy!



"tomcheesewright" wrote:

I want to hide everything in a worksheet except for the table into which I am
asking others for input. Columns are easy, but how can I hide ALL the rows
below my chart? I could colour them out in black, that would lead to
printing issues.

Help please!

  #4   Report Post  
Gilly Hampshire
 
Posts: n/a
Default

Hi Tom,

To hide rows do the following
1) Click the first row number you want to hide, this will select the whole row
2) Press Ctrl+Shift+the down arrow key, this will select ALL the rows below.
3) Select 'Format' on the Menu toolbar and choose 'Row', then select 'Hide'

All the selected rows will now be hidden and a grey moat will appear.

Hope this helps

"tomcheesewright" wrote:

I want to hide everything in a worksheet except for the table into which I am
asking others for input. Columns are easy, but how can I hide ALL the rows
below my chart? I could colour them out in black, that would lead to
printing issues.

Help please!

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
Can Excel "slide up" rows with content thru empty rows to condense portly44 Excel Worksheet Functions 2 April 1st 05 12:47 AM
Insert rows Mr. G. Excel Worksheet Functions 3 March 31st 05 03:49 AM
the limit on how many rows can be in one spreadsheet liz Excel Worksheet Functions 2 March 4th 05 11:29 AM
Can I rotate excel sheets so columns are rows & vice-versa (i.e.. JamesR Excel Discussion (Misc queries) 3 January 12th 05 02:18 PM
How do I remove blank rows in Excel? m28leics Excel Discussion (Misc queries) 2 November 29th 04 11:56 PM


All times are GMT +1. The time now is 05:28 AM.

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"