Hello
I've recorded a macro to produce a chart of a range of numbers (select
range, call chardwizard)
This is the macro:
Sub Macro12()
ActiveCell.Range("A1:K11").Select
ActiveSheet.ChartObjects.Add(95.25, 13.5, 145.5, 116.25).Select
Application.CutCopyMode = False
ActiveChart.ChartWizard Source:=Range("A2:K12"), Gallery:= _
xl3DSurface, Format:=3, PlotBy:=xlRows, CategoryLabels:=1, _
SeriesLabels:=1, HasLegend:=2, Title:="", CategoryTitle:="", _
ValueTitle:="", ExtraTitle:=""
End Sub
When I try to apply this macro to the next set of numbers the selection
is done right BUT the chartwizard uses the same numbers as in the old
selection (the one I recorded the macro with) as input data.
So how do i tell the chartwizard to use the actual selection ??
Please help I need 40 Charts, and I hoped a macro will make it easier !!
Thanks