Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a worksheet with two overlapping charts and I am trying to export them
to .gif picture format. I have tried several ways and have run out of creativity... Can anyone help?? Private Sub ChartExporter() Dim SaveLoc As String Dim Pict As Object Dim chrt Dim i As Integer PowerWord1 Set Pict = ThisWorkbook.Worksheets("Front").Shapes.Range(Arra y("Trend_Chart", "Discrete_Chart")).Select 'ThisWorkbook.Worksheets("Front").ChartGroups() ''ERROR: out of range??? 'ActiveSheet.Shapes.Range(Array("Trend_Chart", "Discrete_Chart")).Select ''ERROR: Object Required??? 'ThisWorkbook.Worksheets("Front").Shapes.Range(Arr ay("Trend_Chart", "Discrete_Chart")).Select ''ERROR: Object Required??? Set chrt = Pict.chart SaveLoc = ThisWorkbook.Path & Application.PathSeparator & "Chart" & ".gif" chrt.Export Filename:=SaveLoc, FilterName:="GIF" 'Clear chart variable Set chrt = Nothing PowerWord2 End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Making a bubble charts without having the bubbles overlapping | Charts and Charting in Excel | |||
Overlapping floating column charts? | Charts and Charting in Excel | |||
Export charts | Charts and Charting in Excel | |||
Overlapping Charts | Charts and Charting in Excel | |||
Overlapping Pie Charts | Charts and Charting in Excel |