I am receiving a "method range of object global failed" error on the line below
.Top = Range(Cells(((aa - 4) * 5), 1))
Set chrt = sh.ChartObjects.Add
With chrt
.Top = Range(Cells(((aa - 4) * 5), 1))
aa is a for variable. My goal is to stack charts below one another 5 cells apart. The...