Calling a macro when activating a sheet

augustyzy

New Member
Joined
Nov 12, 2017
Messages
1
Hi all!

When I activate a Sheet A, I want to run a macro which does something on another Sheet B, including copy and paste some ranges on sheet B.
The macro runs well independently. However, when I put it in the event of activating Sheet A, the following error occurs:
[h=3][/h]Runtime Error 2147417848(80010108)
Method Copy of Object Range Failed

When debugging, there is also an error: Method 'PasteSpecial' of object 'Range' failed.

Anyone could help me work out this problem please? Thank you very much.

The following is my code:
Private Sub Worksheet_Activate() ' This is Sheet A
Application.Run "Module1.Sort"
End Sub

Sub Sort() ' This is the macro I want to run
Dim ws As Worksheet
Set ws = ThisWorkbook.Worksheets("RankProcessing") ' This is Sheet B

Application.ScreenUpdating = False
Range("RawAll").Copy ' RawAll is a name range in Sheet C
ws.Range("U3").PasteSpecial xlPasteValues
Application.CutCopyMode = False
'ws.Range("A1").Select

Dim xRg As Range
Dim yRg As Range
Set xRg = ws.Range("U3:AG3")
For Each yRg In xRg
With ws.Sort
.SortFields.Clear
.SortFields.Add Key:=yRg, Order:=xlAscending
.SetRange ws.Range(yRg, yRg.End(xlDown))
.Header = xlYes
.MatchCase = False
.Apply
End With
Next yRg
Application.ScreenUpdating = True
End Sub
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
You need this:

Code:
Private Sub Worksheet_Activate() ' This is Sheet A
Application.Run "Sort"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,750
Members
448,989
Latest member
mariah3

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