Changing one cell on one sheet to be the same as another

Pauljj

Well-known Member
Joined
Mar 28, 2004
Messages
2,047
I have a drop down list on a sheet called "Average Stat" when the user selects this cell I want what shows on a sheet called "Charts" to change to the same name. I thought this would be easy but its not proving so. What I have is the following, this code is set up in the "Average Stat" sheet

VAL1CELL is a named range of one cell in the "Charts" sheet

-------------------------------------------------------------------------------

Private Sub Worksheet_Change(ByVal Target As Range)

If Not Intersect(Target, Me.Range("C2")) Is Nothing Then
Range(VAL1CELL) = Range("C2")
Worksheets("Charts").Calculate
Worksheets("Promotions").Calculate
Worksheets("Average Stat").Calculate
End If
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
hi there, thanks for the quick response, I tried that but on that line I got an error message

Method range of object Worksheet failed ?
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,726
Members
452,939
Latest member
WCrawford

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