Have VB Code "on" for all workbooks

P

PBG

I have the following code in my personal workbook. How can I get the VB code
to work in all workbooks or do I have to make an add-in?

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
Union(Target.EntireColumn, Target.EntireRow).Select
'Target.EntireRow.Select
Target.Activate
Application.EnableEvents = True
End Sub

Also, can you change the color?
Thanks
 

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

Top