arrange windows vertically - 2 selected sheets

  • Thread starter Thread starter al007
  • Start date Start date
A

al007

looking for a general macro which will arrange my current active sheet
& another selected sheet vertically or a less flexible one which would
arrange 2 predefined sheets vertically ie sheet1 & shhet 2 only)

thxs
 
I manage to do the 2nd situation can anybody help with the 1st
ie current active sheet & a selected sheet

thxs
 
Using the macro recorder...........


Sheets("Sheet1").Select
Range("C25").Select
ActiveWindow.NewWindow
Sheets("Sheet2").Select
ActiveWorkbook.Windows.Arrange ArrangeStyle:=xlVertical
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top