I am trying to re use the following code to transfer all my excel 2007 charts to a powerpoint presentation. The problem with the existing code was it could not transfer charts that are moved as sheet itself.
For that I have introduced a new loop to capture those charts (marked in red). I am assuming that I am not using right object.
ActiveWorkbook.Worksheet.ChartObjects
I apolosize for my last post, in which I didn't wrapped my code in tags 
Please advice.
Thanks,
Webbug
Full code
Public Sub TransferToPPT()
'Excel Application objects declaration
Dim objSheet As Worksheet
Dim obj_chart As Worksheet
Dim objChartObject As ChartObject
Dim objChart As Chart
'Powerpoint Application objects declaration
Dim pptApp As Object 'PowerPoint.Application
Dim pptPre As Object 'PowerPoint.Presentation
Dim pptSld As Object 'PowerPoint.Slide
'Create a new Powerpoint session
Set pptApp = CreateObject("PowerPoint.Application")
'Create a new presentation
Set pptPre = pptApp.Presentations.Add
'Loop through each worksheet
For Each objSheet In ActiveWorkbook.Worksheets
'Verify if there is a chart object to transfer
If objSheet.ChartObjects.Count > 0 Then
'Loop through each chart object in worksheet
For Each objChartObject In objSheet.ChartObjects
'Set chart object
Set objChart = objChartObject.Chart
'Create new slide for the chart
'ppLayoutBlank = 12
Set pptSld = pptPre.Slides.Add(pptPre.Slides.Count + 1, 12)
With objChart
'Copy chart object as picture
objChart.CopyPicture xlScreen, xlBitmap, xlScreen
'Paste copied chart picture into new slide
pptSld.Shapes.Paste
End With
Next objChartObject
End If
Next objSheet
' For chart sheets
'Loop through each chart object in worksheet
For Each obj_chart In ActiveWorkbook.Worksheet.ChartObjects
'Set chart object
Set objChart = obj_chart
'Create new slide for the chart
'ppLayoutBlank = 12
Set pptSld = pptPre.Slides.Add(pptPre.Slides.Count + 1, 12)
With objChart
'Copy chart object as picture
objChart.CopyPicture xlScreen, xlBitmap, xlScreen
'Paste copied chart picture into new slide
pptSld.Shapes.Paste
End With
Next obj_chart
'Activate PowerPoint application
pptApp.Visible = True
pptApp.Activate
End Sub
Bookmarks