johnnyw,
First of all, i must say that i tend to avoid using Charts in Access Reports like the plague that they are... so i cannot help you with the details of using them.
however, a long while back a friend asked me a similar question when she wanted to export a chart from an access report (she had managed to get a chart working in the report). After some research i wrote some code like the example below, and it exports the chart as an image file.
For this to work you will need to set a Reference to the Microsoft Graph Object Library so you can access the object model for charts in your VBA code.
__________________________________________
Dim cht as Graph.Chart
'--report must be physically open for this to work
DoCmd.OpenReport "MyReport", acViewPreview, acEdit
DoEvents
Set cht = Reports("MyReport").Controls("MyChart")
'--export as gif. you can specify other formats like BMP or JPEG as well
cht.Export "c:\temp\MyGraph.gif", "GIF"
Set cht = Nothing
DoCmd.Close acReport, "MyReport"
__________________________________________
You need to run this code as part of a function or sub
Hope that helps some.
axa
[This message has been edited by axa (edited 08-28-2001).]