Last Cell Scroll Bar Problem

  • Thread starter Thread starter John
  • Start date Start date
J

John

I've got the familiar problem of the last cell of data being row 6000, but
the scroll bar going down to 17000.

Now, I 've tried the Debra Dalglish method:
http://www.contextures.on.ca/xlfaqApp.html#Unused

....and the Dave McRitchie attributed one:

Sub makelastcell()
' David McRitchie, posted 2000-11-30 (see lastcell.htm)
' ---- tested only on Excel 2000, should work also on Excel 97 ------
Dim x As Integer
On Error GoTo 0
x = MsgBox("Do you want the activecell to become " & _
"the lastcell" & Chr(10) & Chr(10) & _
"Press OK to Eliminate all cells beyond " _
& ActiveCell.Address(0, 0) & Chr(10) & _
"Press CANCEL to leave sheet as it is", _
vbOKCancel + vbCritical + vbDefaultButton2)
If x = vbCancel Then Exit Sub
Range(ActiveCell.Row + 1 & ":" & 65536).Delete
Range(Cells(1, ActiveCell.Column + 1), Cells(65536, 256)).Delete
Beep
ActiveWorkbook.Save
Beep
End Sub


......but still no joy. Is there anything else to try (note I've deleted all
named ranges)? One point is that the columns carry formating (border and
fill) rather than the individual cells.

I'm using Excel 2003 by the way.

Best regards

John
 
Those methods are pretty much it.

You might need to experiment with them (those methods) on new blank sheet,
and try to discover what is causing your problem.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top