Recalculate Range Name After Change

soteman2005

New Member
Joined
Nov 24, 2005
Messages
32
Hi,

I would like to create a macro that automatically runs to recalculate the named range "DC_subscriber_average" when anything on the sheet "Demand-Inputs" changes. I would be grateful if someone could point me in the right direction or write a quick macro for me.

Thanks

Adam
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
rightclick sheet tab & View Code.
You do, of course have Calculation set to Manual otherwise this is unnecessary ?

Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
    ActiveSheet.Range("DC_subscriber_average").Calculate
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,353
Messages
6,124,462
Members
449,163
Latest member
kshealy

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