Export method (Excel Graph)
Exports the chart in a graphic format. Returns a value of type Boolean.
expression.Export (FileName, FilterName, Interactive)
expression Required. An expression that returns a Chart object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
FileName | Required | String | The name of the exported file. |
FilterName | Optional | Variant | The language-independent name of the graphic filter as it appears in the registry. |
Interactive | Optional | Variant | True to display the dialog box that contains the filter-specific options. If this argument is False, Graph uses the default values for the filter. The default value is False. |
This example exports the chart as a GIF file.
myChart.Export _
FileName:="current_sales.gif", FilterName:="GIF"
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.