So I figured out how to select the bottom three rows of the spreadsheet:
Range("A" & Cells.Rows.Count).End(xlUp).Select
Range(ActiveCell.Offset(0, 0), ActiveCell.Offset(-2, 6)).Select
However, I can't figure out how to relate my selection to the data range selected in my recorded macro:
ActiveChart.SetSourceData Source:=Range("Sheet1!$A$26:$G$28")
Any suggestions you have would be much appreciated.