Personal Macro Workbook

Pestomania

Active Member
Joined
May 30, 2018
Messages
292
Office Version
  1. 365
Platform
  1. Windows
I currently have very little experience with Personal Macro Workbook (PMW) . I am working with a Macro that monitors a specific cell and activates when the data changes. The macro is nested under that specific sheet rather than a module and it works perfectly. Only problem is, I would like to move that macro to a PMW and have it only monitor that specific sheet. Below is the code.


HTML:
Private Sub Worksheet_Change(ByVal Target As Range)    If Target.Address = "$C$7" Then        Run resetformatting    End IfEnd Sub

But once this macro is placed into the PMW, it no longer works. How can I make this macro monitor sheet("master") and determine when the cell changes?
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
If you want to monitor the sheet "master" for changes in a specific cell, your worksheet_change code needs to be in that sheet. Why do you want to put the code in your PERSONAL.XLSB workbook?
 
Upvote 0
If you want to monitor the sheet "master" for changes in a specific cell, your worksheet_change code needs to be in that sheet. Why do you want to put the code in your PERSONAL.XLSB workbook?

I am using the personal because I use these macros on 50 workbooks a day. I would have to copy the code into each one.

Idid have the code in that sheet and it works great but I do not want to add it Everytime I open a book..

Thank you
 
Upvote 0
You can put code in Personal that will run when any cell in any open workbook is changed, but how would it know which worksheet is the one of interest?
 
Upvote 0
You can put code in Personal that will run when any cell in any open workbook is changed, but how would it know which worksheet is the one of interest?

The cell is C7 on the "Master" sheet. It should only be monitoring that specific cell. Once input is there, it will run the macro to make various changes throughout the spreadsheet. The various changes can include but are not limited to conditional formatting, value updating, etc.

Thank you
 
Upvote 0
The change event occurs. It knows the cell and worksheet -- that's it:

Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)

End Sub

What logic does it apply to know that the sheet is the sheet of interest? By worksheet name? Something else?
 
Upvote 0
The change event occurs. It knows the cell and worksheet -- that's it:

Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)

End Sub

What logic does it apply to know that the sheet is the sheet of interest? By worksheet name? Something else?

The above code was placed in that specific sheets coding. So I placed the above code in "Sheet1" VBA profile. But now that it is moving to a Personal Macro Workbook. I need it to be set up to look at "Sheet 1" and cell "C7".

In C7 there are four options: small, medium, large, other. Based on the option selected, it will set up the rest of the workbook. It currently works if it is placed in "Sheet1"s specific VBA. But I need it to work from the PMW.

Unfortunately, I cannot change anything in the format of the workbook so it has to always work.
 
Last edited:
Upvote 0
When you put code in a workbook's sheet module and an event is triggered, you KNOW what worksheet you're on, right?

When you put event code in Personal, all it knows is the sheet. Is knowing that the name is Sheet1 sufficient? Should the macro run if C7 in some random workbook with a sheet name Sheer1 is changed?
 
Upvote 0
When you put code in a workbook's sheet module and an event is triggered, you KNOW what worksheet you're on, right?

When you put event code in Personal, all it knows is the sheet. Is knowing that the name is Sheet1 sufficient? Should the macro run if C7 in some random workbook with a sheet name Sheer1 is changed?

It needs to know the sheet name and the exact cell. Currently the code monitors that cell constantly and once the cell value changes, the macro runs immediately. The trigger is that specific cell.

I know this is a difficult question but it has to monitor that specific cell constantly and I would really like it to work from the private macro workbook.

Thank you
 
Upvote 0
The problem isn't complicated, we're just not communicating.

The computer says, "OK, cell C7 changed on some sheet in some workbook. Should I run the macro?"

What do you tell it?
 
Upvote 0

Forum statistics

Threads
1,215,025
Messages
6,122,731
Members
449,093
Latest member
Mnur

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