A Ayo Mar 8, 2008 #1 How do I write a code to make a specific cell the top left cell in the worksheet?
J Joel Mar 8, 2008 #2 Sub myscroll() ActiveWindow.ScrollRow = 10 ActiveWindow.ScrollColumn = 22 End Sub
J Joel Mar 8, 2008 #3 Here is a small modification to my last posting Sub myscroll() ActiveWindow.ScrollRow = Range("D5").row ActiveWindow.ScrollColumn = Range("D5").column End Sub
Here is a small modification to my last posting Sub myscroll() ActiveWindow.ScrollRow = Range("D5").row ActiveWindow.ScrollColumn = Range("D5").column End Sub
A Ayo Mar 8, 2008 #4 Thanks a lot Joel. I really appreciate it. Joel said: Here is a small modification to my last posting Sub myscroll() ActiveWindow.ScrollRow = Range("D5").row ActiveWindow.ScrollColumn = Range("D5").column End Sub Click to expand...
Thanks a lot Joel. I really appreciate it. Joel said: Here is a small modification to my last posting Sub myscroll() ActiveWindow.ScrollRow = Range("D5").row ActiveWindow.ScrollColumn = Range("D5").column End Sub Click to expand...