How To Control Where Sheet Starts When You Open It?

aedctalk

Board Regular
Joined
Oct 9, 2010
Messages
156
Hi.

So right now i have nothing in my coulumn a but i am using it as a spacer to center my excel table.. However everytime i open the sheet it usually has column b on the very left of the page and column a is off the screen.

How can i make it so that column a is always on my screen at the left side?

I currently have D8 set as selected and activated and need that one to stay that way.

Thanks so much!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Maybe this?

Code:
Private Sub Workbook_Open()

ActiveWindow.ScrollIntoView Range("A1").Left, Range("A1").Top, 1, 1

End Sub
 
Upvote 0

Forum statistics

Threads
1,224,527
Messages
6,179,328
Members
452,907
Latest member
Roland Deschain

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top