I have a dynamic scatter plot that changes with a slider button. In order to do that i use two named ranges with the offset function, these named ranges vary when i move the slider button increasing or decreasing the X and Y ranges end value. The problem arises when i make a copy of this sheet. The chart in the new sheet won't have the named range on the series formula, but instead it adopts the range that was calculated in the first sheet, like this:
In the first sheet i have this:
=Serie('old_sheet'!$AD$3;'old_sheet'!DEF_RANGE;'old_sheet'!STRESS_RANGE;1)
But when i make a copy, the chart in the new sheet will become:
=Serie('new_sheet'!$AD$3;'new_sheet'!$G$19:$G$578;'new_sheet'!$F$19:$F$578;1)
So i need to change the formula manually to this:
=Serie('new_sheet'!$AD$3;'new_sheet'!DEF_RANGE;'new_sheet'!STRESS_RANGE;1)
I ask if anyone can help me implement a simple button that changes the series formula to what i want.
I have tried to record a macro of the steps i do to change the formula... but it doesn't always works.
Kind of stuck here... i would appreciate any help!
Regards