Run macro upon cell change...

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
It's a Worksheet_Change() event, in which you'll exit the macro if the change happens outside of the desired target range.

Hope this helps... if you need more infomation, please post more specifics about what you need to do.
 
Upvote 0
Hello,

FOr a specific sheet add this code to the specific sheet code window

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
'your code here
End Sub

this is assuming it is a manual change and not a change in a formula.
 
Upvote 0
Run Macro when cell changes...

I have a macro that runs and calculates a total based upon the entries made. I have a button to execute the macro to calculate. I have a macro that I recorded that clears the calculated total. I would like the "clear" macro to run when any of the user defined values change.

Example:

User Defined Values:

Sales: 400
COGS: 200

Calculated Value:
GP: 200

If the user changes Sales or COGS the GP will clear until the macro to recorded to calculate the value is executed again.
 
Upvote 0
Hello,

SOmething like this perhaps?

Code:
Private Sub Worksheet_Change(ByVal Target As Range) 
if target.address="$A$1" or target.address="$B$1" then
    range("F1:F2").clearcontents
end if 
End Sub

change cell reds as required.
 
Upvote 0
I like to throw a

Code:
If Target.Count >1 Then Exit Sub

in there... lots of macros break when you delete/change multiple cells at once.
 
Upvote 0

Forum statistics

Threads
1,213,527
Messages
6,114,144
Members
448,552
Latest member
WORKINGWITHNOLEADER

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