Excellent suggestion. It works beautifully using the Go To from Excel.
However, I wasn't very clear in my question. I am trying to use this Go To function in a Macro attached to a button. I implemented your suggestion in the following:
Sheets("A").Select
Range("IV65536").Select
Range("Z104").Select
Z104 came back in the middle of my screen. Is there a different kind of command I should be using in the Macro?
Application.Goto Reference:="R65536C256"
Application.Goto Reference:="R104C26"
One possibility is that your workbook contains named dynamic ranges. You can see them via Insert|Define|Name. It seems Excel has to check whether or not one of these ranges expanded AFTER ANY ENTRY ANYWHERE. One solution is, I guess, to use a faster computer.
Aladin
Try and avoid Excels Last Cell.
Hi Elisabeth
I would avoid the use of Last Cell especially if used in VBA. To see my reasons,some detail and better alternatives follow my link to my web page and click the "VBA Tips and Tricks".
Dave
BTW to place the cell in the upper left of your screen use:
Application.Goto _
Reference:=Sheets("Sheet1").Range("D20"), Scroll:=True
OzGrid Business Applications
You are BEAUTIFUL. Consider yourself very humbly bowed to...
Thank you so much. It worked.