fboehlandt
Active Member
- Joined
- Sep 9, 2008
- Messages
- 334
Hi everyone,
is it possible to make changes to a chart without 'activate'? This may be a silly question but I wonder if the chart has to be selected to iinvoke changes. Something on the lines of
Thanks very much for your help
is it possible to make changes to a chart without 'activate'? This may be a silly question but I wonder if the chart has to be selected to iinvoke changes. Something on the lines of
Code:
Dim wb As Workbook
Dim ws As Worksheet
Dim mychart as Chart
Set wb = ThisWorkbook
Set ws = wb.Sheet("Sheet1")
Set mychart = ws. ??? ("chart1")
With mychart
'do stuff here
End With
Thanks very much for your help