I’m writing a macro to make a Bar Chart.
Range(“A6:C19”).select
charts.add
ActiveChart.ChartType = xlBarClustered
…
I can’t figure out how to size this embedded chart. I’ve tried set eChart = ActiveSheet.ChartObjects(1).chart
eChart.Width = 100
but that seems to be the wrong syntax. What am I doing wrong? Thank you