Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default How can I export a chart from Excel to Access??

Hello
How can I export an excel chart to Access??

Thanks a lot
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default How can I export a chart from Excel to Access??

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
----------------------------------------------------------------------------

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default How can I export a chart from Excel to Access??

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?

" wrote:

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
----------------------------------------------------------------------------


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default How can I export a chart from Excel to Access??

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)

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Export Excel File From Web or Access doncote0 Excel Discussion (Misc queries) 0 February 26th 07 06:38 PM
Export to Access from Excel Secret Squirrel Excel Discussion (Misc queries) 0 February 7th 06 11:44 PM
Export from Access to Excel tamxwell Excel Programming 9 June 30th 05 08:31 PM
export access to excel. change access & update excel at same time fastcar Excel Discussion (Misc queries) 0 June 24th 05 09:27 PM
Export from Access to Excel Sabina Excel Discussion (Misc queries) 3 February 23rd 05 09:56 PM


All times are GMT +1. The time now is 10:23 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"