The code below is making the sheet (in my case is "Main") to be visible and placed near the sheet you currently select. The Problem is that the code can interfere in the running of other macro. I noticed that when the macro run and comes to select particular sheet and then copy cells from that sheet to another, the debug window will pop up as the below code was interfere by cancelling the copy as it always activate or select "Main" sheet or tab before you select the sheet and paste cells to the sheet. Can you make the code below possible not to interrupt in the running of other macro like in my case above?
The code is:
Code
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
If Not Sh Is Worksheets("Main") Then
Application.EnableEvents = False
Worksheets("Main").Move before:=Sh
Sh.Activate
Application.EnableEvents = True
End If
End Sub
Thanks in advance