troubleshooting

A

alldreams

Sub test()
Sheets("CHARTS").Select
ActiveSheet.ChartObjects(1).Chart.Export
Filename:="c:\temp.gif", FilterName:="GIF"

End Sub

It worked from a different computer. From this computer,
I am getting the following error "Application Defined or
Object defined error".

Any suggestions?
 
S

Steve Garman

Works OK here on 2002

All I did was rename a sheet to "Charts" add some simple data to it and
create a chart with the chart wizard then run this macro

Sub test()
Sheets("CHARTS").Select
ActiveSheet.ChartObjects(1).Chart.Export Filename:="c:\temp.gif",
FilterName:="GIF"
End Sub
 
S

Steve Garman

It'll be on the CD. Use "Add/remove programs"

If you need more info, in XL 2002 help, type "gif filter" into the
Answer wizard

One of the options you get is "Install or remove individual components
in Microsoft Office"
 

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