Not sure what I need to ask

Brown

Board Regular
Joined
Sep 14, 2009
Messages
200
Office Version
  1. 365
Once I have a SS created is there are way to only view it and not have infinite cells to scroll through?
I guess what I am asking is can I freeze the entire SS?
I hope I am making sense.
Thanks
Brown
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Once I have a SS created is there are way to only view it and not have infinite cells to scroll through?
I guess what I am asking is can I freeze the entire SS?
I hope I am making sense.
Thanks
Brown

What version of Excel? When I used to use 2003, I would just "Hide" the unused Columns/Rows on my SS (SpreadSheet).
 
Upvote 0
SS = Spread Sheet
not sure I will ever see Social Security :)

I will try to hide the others.
I am working between two versions of Excel right now, 2007 and 10
 
Upvote 0
I dont think the hide option will work, I tried to scroll over to the right to see how many cells I would have to hide and ended up scrolling over about 4000 cells before I stopped.
 
Upvote 0
SS = Spread Sheet
not sure I will ever see Social Security :)

I will try to hide the others.
I am working between two versions of Excel right now, 2007 and 10



Oh alright:)
you can set scroll range like this in vba or freeze the sheet and protect it...maybe...totally up to you...
Code:
[/FONT]
[FONT=Courier New]Sheet1.ScrollArea = "A1:A100"[/FONT]
[FONT=Courier New]

however if you have to use the code then you'll have to run this code on start many thisworkbook.open event...
 
Upvote 0
What is the issue?
If you have all your data in the upper left cells of the spreadsheet, just ignore the empty vastness and don't scroll.

Why would one need to scroll through "infinite cells"?
 
Upvote 0
What is the issue?
If you have all your data in the upper left cells of the spreadsheet, just ignore the empty vastness and don't scroll.

Why would one need to scroll through "infinite cells"?

What if there's important/secret data hidden in Cell KLA99999? :laugh:
 
Upvote 0
as long as you type something in cell C3, the view area would be restricted to A1:G16

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
   If Target.Cells.Count = 1 And Target.Address = "$C$3" Then
  
      If LCase(Target.Value) <> "" Then
         Rows("17:65536").EntireRow.Hidden = True
         Columns("H:IV").EntireColumn.Hidden = True
      Else
        Rows("17:65536").EntireRow.Hidden = False
        Columns("H:IV").EntireColumn.Hidden = False
      End If
      
   End If
End Sub
 
Upvote 0
Actuly, its pretty easy to hide unused columns.
If all your cells are in column H or leftward, select all of column I, press Shift+Cmd+Right (on a Mac) and then Format>Columns>Hide.

Similarly for rows.

I just wonder why bother even that much.
 
Upvote 0

Forum statistics

Threads
1,224,551
Messages
6,179,476
Members
452,915
Latest member
hannnahheileen

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top