I am trying to take advantage of the nicer plotting features of MS Excel, in a custom report in Access 2013. I have a query output that I just need to direct to the sheet portion of the MS Excel Chart Object. I am pretty decent at VBA, but I am not sure how begin on this.
UPDATE
Here Is what I have so far which is virtually nothing.
On the form, I do not see an onload event so I am adding this VBA code under onPaint. I have a summary query which has all my data. My intent is to loop through the query results and place it in a given cell based on the output.
Dim query As QueryDef
Dim data As Recordset
Set data = query.OpenRecordset("Library Qualificatoin Summary")
If data.RecordCount <> 0 Then
Me.dataSummaryChart.***STUCK HERE***
end if