Worksheet Selection Change to work on all sheets

Schofi_D

New Member
Joined
Sep 13, 2017
Messages
4
Hi

I have a macro that works fine if it is in the workbook that is being used, but i want to be able to make it work in any active workbook by assigning the macro to the quick access toolbar, but i cant get a worksheet selection change event in a module in my personal xlsb.

This is my code i am running in the individual workbooks code, but how do i make this work in any sheet under my personal xlsb?

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False
Cells.Interior.ColorIndex = 0
Static xRow
Static xColumn
If xColumn <> "" Then
    With Columns(xColumn).Interior
        .ColorIndex = xlNone
    End With
    With Rows(xRow).Interior
        .ColorIndex = xlNone
    End With
End If
pRow = Selection.Row
pColumn = Selection.Column
xRow = pRow
xColumn = pColumn
With Columns(pColumn).Interior
    .ColorIndex = 6
    .Pattern = xlSolid
End With
With Rows(pRow).Interior
    .ColorIndex = 6
    .Pattern = xlSolid
End With
End Sub

Can you create a selection change macro in all workbooks? once the code has been activated/run from the toolbar with the macro associated to the button

Thanks

Dan
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Hi, welcome to the MrExcel Message Board.

As standars you can use worksheet events and workbook events. With a bit of code you can also use Application level events.

That means that you can act on certain actions which are raised in that instance of Excel. To do it you need to create a new class with some code in it. The easy way to utilise that Class is to use it in the ThisWorkbook module of your Personal.xlsb.

I have not replicated your code but the basic system is like this. My code just displays a Msgbox when the selection changes. Just remove that and put your code in there.

Create a new Class module and rename it to c_App. (That name is used in the code so needs to match.)
This code needs to go into the Class module:
Rich (BB code):
Public WithEvents App As Application
  
Private Sub App_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
    MsgBox "Selection Change " & Sh.Parent.Name & " " & Sh.Name & " " & Target.Address
End Sub

This code needs to go into the ThisWorkbook module of your Personal.xlsb.
Rich (BB code):
Dim newApp As New c_App
 
Private Sub Workbook_Open()
    Set newApp.App = Application
End Sub
Now you need to close Excel and restart it. After that, when you change selection a Msgbox will appear that displays the Workbook name, the Sheet name and the selected range address.
To adapt it to your needs, take out the red line and insert your own code.

If you need more background information about how it all works, start here: http://www.cpearson.com/excel/appevent.aspx


Regards,
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,618
Members
449,092
Latest member
amyap

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