How can I export a chart from Excel to Access??

S

sjoo.kwak

hi Kyriaki

Excel chart can be exported as a image file(GIF or JPG format)
I can't understand what you asked

following is an example:
----------------------------------------------------------------------------
Sub Create_GIF()
Dim mychart As Chart
Set mychart = ActiveSheet.ChartObjects(1).Chart
mychart.Export FileName:="c:\Mychart.gif", FilterName:="GIF"
End Sub
----------------------------------------------------------------------------
 
G

Guest

I want to export an excel chart to Microsoft Access. I ask if I can export
the excel Chart to Microsoft Access in a table or in a form. Is there any
possibility?
 
S

sjoo.kwak

if field data type is OLE object, the field restore binary data.
an exported chart image file can restored the field.
If you want to display a chart on the access form,
you'd better use active-x chart control(eg,Microsoft Chart Control or
the third party controls)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top