G Guest Nov 20, 2006 #1 What is the code to write in order to scroll so that cell A2 will appear at the top-left corner of the window?
What is the code to write in order to scroll so that cell A2 will appear at the top-left corner of the window?
B Bob Phillips Nov 20, 2006 #2 With ActiveWindow .ScrollRow = 2 .ScrollColumn = 1 End With -- HTH Bob Phillips (replace xxxx in the email address with gmail if mailing direct)
With ActiveWindow .ScrollRow = 2 .ScrollColumn = 1 End With -- HTH Bob Phillips (replace xxxx in the email address with gmail if mailing direct)
C Chip Pearson Nov 20, 2006 #3 Try Application.Goto reference:=Range("A2"), scroll:=True -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com (email on the web site)
Try Application.Goto reference:=Range("A2"), scroll:=True -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com (email on the web site)