Hi
I have a macro that creats a chart at a specific location on my spreadsheet.
ActiveSheet.Shapes.AddChart(xlXYScatter, Left:=Range(“C52”).Left, Top:=Range(“c52”).Top, Width:=Range(“c52:I52”).Width, Height:=Range(“c52:c68”).Height).Select
It allows for about 20 rows of data above it. What I would like to do is to automatically locate the chart below the last row of data no matter how many rows of data I have so that the chart will never cover any of the data rows. I tried to xldown to the last row and then use RC references from that bottom cell but I have not been sucessful.
Any thoughts?
Thanks much
Arjay