Excel VBA - Posicionando o Gráfico na Planilha - Adding New Chart for Selected Data using ChartObjects.Add Method
O ChartObjects.Add é o melhor método, pois é muito fácil posicionar os objetos gráficos alterando as configurações.
Sub ExAddingNewChartforSelectedData_ChartObjects_Add_Method()
With ActiveSheet.ChartObjects.Add(Left:=300, Width:=300, Top:=10, Height:=300)
.Chart.SetSourceData Source:=Sheets("Temp").Range("C5:D7")
End With
End Sub
Deixe seus comentários, compartilhe este artigo!
⬛◼◾▪ CONTATO ▪◾◼⬛