|
Re: Add images to chart using vba/macro
Hello.. the macro code goes here..
Sub Chart()
Dim myRange As Range
Set myRange = Range("A4:A13")
Charts.Add
ActiveChart.ChartType = xlRadar
ActiveChart.SetSourceData Source:=myRange, _
PlotBy:=xlColumns
End Sub
when this sub assigned to a button, it works fine however i want an image to be produced with the new sheet.
Thanks
|