1 Dim rgExp As Range: Set rgExp = Range("B5:H14")
2
3 ''rgExp.CopyPicture Appearance:=xlScreen, Format:=xlPicture
4 rgExp.CopyPicture Appearance:=xlScreen, Format:=xlBitmap
5
6 With ActiveSheet.ChartObjects.Add(Left:=rgExp.Left, Top:=rgExp.Top, _
7 Width:=rgExp.Width, Height:=rgExp.Height)
8 .Name = "ChartVolumeMetricsDevEXPORT"
9 ''.Chart.ChartType = xlColumnStacked
10 .Activate
11 End With
12 ''ActiveSheet.ChartObjects("ChartVolumeMetricsDevEXPORT").Activate
13 ActiveChart.Paste
14 ActiveSheet.ChartObjects("ChartVolumeMetricsDevEXPORT").Activate
15 ActiveSheet.ChartObjects("ChartVolumeMetricsDevEXPORT").Chart.Export "C:\testmeExportChart.jpg"
16 ActiveSheet.ChartObjects("ChartVolumeMetricsDevEXPORT").Delete
17
18