Is possible to keep view with split because after my macros run it moves the columns around

Brass Contributor

Is it possible to realign where my columns are after my macro runs? Because after my macro runs it moves columns all around when it's done so it doesn't keep the same view.

 

rodsan724_0-1634850507354.png

 

1 Reply

I figured it out with code similar to below

 

Sub ResetView()
    Range("A2").Select
    ActiveWindow.ScrollColumn = 7

    ActiveWindow.Panes(2).Activate
    ActiveWindow.SmallScroll ToRight:=11
End Sub