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
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
[/FONT]
[FONT=Courier New]Sheet1.ScrollArea = "A1:A100"[/FONT]
[FONT=Courier New]
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"?
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