H
Herman Merman
Two confusing problems:
I have a Macro which Copies a worksheet which contains two dropdow
lists: "Dropdown 8" & "Dropdown 20"
The Macro copies the entire worksheet to a new one within the sam
workbook and appends a (2) to the end. The dropdown lists are no
called "Dropdown 8" and "Dropdown 13" The macro then selects Dropdow
13 and deletes it
ActiveSheet.Shapes("Drop Down 13").Select
Selection.Delete
My problem is that when the Macro is used by someone else on
different PC the dropdown list suddenly becomes "Dropdown 14" and th
Macro Errors when it tries to Select "Dropdown 13". Why doesn'
Dropdown 8 Change?
The same problem applies to several charts on the same worksheet, th
Macro selects each chart and changes the source data for them.
ActiveSheet.ChartObjects("Chart 9").Activate
ActiveChart.ChartArea.Select
Chart 9 suddenly becomes Chart 10 and again the Macro Errors.
How can I stop excel renumbering the objects within a worksheet?
have tried naming them but it doesn't seem to work as th
Insert>Name>Define function still refers to "Drop Down 14"
Any ideas?
Thanks
Herma
I have a Macro which Copies a worksheet which contains two dropdow
lists: "Dropdown 8" & "Dropdown 20"
The Macro copies the entire worksheet to a new one within the sam
workbook and appends a (2) to the end. The dropdown lists are no
called "Dropdown 8" and "Dropdown 13" The macro then selects Dropdow
13 and deletes it
ActiveSheet.Shapes("Drop Down 13").Select
Selection.Delete
My problem is that when the Macro is used by someone else on
different PC the dropdown list suddenly becomes "Dropdown 14" and th
Macro Errors when it tries to Select "Dropdown 13". Why doesn'
Dropdown 8 Change?
The same problem applies to several charts on the same worksheet, th
Macro selects each chart and changes the source data for them.
ActiveSheet.ChartObjects("Chart 9").Activate
ActiveChart.ChartArea.Select
Chart 9 suddenly becomes Chart 10 and again the Macro Errors.
How can I stop excel renumbering the objects within a worksheet?
have tried naming them but it doesn't seem to work as th
Insert>Name>Define function still refers to "Drop Down 14"
Any ideas?
Thanks
Herma