Sub ConvertChartToPicture()
ActiveChart.ChartArea.Copy
ActiveSheet.Range("A1").Select
ActiveSheet.Pictures.Paste.Select
End Sub
Paste Chart as an Image VBA code: This code will help you to convert your chart into an image. You just need to select your chart and run this code.














