Technowolf
Board Regular
- Joined
- Aug 28, 2014
- Messages
- 181
Is there a way to switch to a specific excel window via macro?
I know
to cycle through excel windows, but is there something like .AppActivate in Excel VBA?
I know
Code:
On Error GoTo ChangeWinErr
Set nw = ActiveWindow.ActivateNext
If Windows.Count > 1 Then
nw.Activate
Exit Sub
End If