Code works in debug mode but fails to run in compile mode

rohanmalhotra1983

New Member
Joined
Mar 27, 2017
Messages
6
Hi all

I am writing a VBA code to copy charts from Excel to Powerpoint. The code is running fine in debug mode, however, gives an error in compile mode. Can anyone please help?

Thanks in advance.

Code:
MBSheet.Activate
MBSheet.ChartObjects("Chart 1").Chart.ChartArea.Copy

mySlide.Select
With mySlide
     .Application.CommandBars.ExecuteMso ("PasteExcelChartSourceFormatting")
     With .Application.ActiveWindow.Selection.ShapeRange
        .Top = Application.CentimetersToPoints(3.9)
        .Left = Application.CentimetersToPoints(1.57)
        .Height = Application.CentimetersToPoints(11.93)
        .Width = Application.CentimetersToPoints(10.96)
    End With
End With
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Can you show all your code and let us know which line of code it fails on.
 
Upvote 0
Hi Trevor

below is the code



Code:
Sub GlobalMoneyBall()

Dim PowerPointApp As Object
Dim myPresentation As Object
Dim mySlide As PowerPoint.Slide
Dim myShape As Object
Dim MainWB As Workbook
Dim MBSheet As Worksheet

Application.DisplayAlerts = False
'*****************Open Excel file where charts are saved*********************
Workbooks.Open Filename:="J:\Research\Internal\Moneyball.xlsx"
Set MainWB = Workbooks("Moneyball.xlsx")
Set MBSheet = MainWB.Sheets("Global charts")
'*****************Open Powerpoint where charts are to be saved********************
If PowerPointApp Is Nothing Then Set PowerPointApp = CreateObject(class:="PowerPoint.Application")
Set myPresentation = PowerPointApp.Presentations.Open(Filename:="J:\Research\Internal\Internal Report.pptx")
Set mySlide = myPresentation.Slides(4)
MBSheet.Activate
MBSheet.ChartObjects("Chart 1").Chart.ChartArea.Copy
mySlide.Select
With mySlide
     .Application.CommandBars.ExecuteMso ("PasteExcelChartSourceFormatting")
     With .Application.ActiveWindow.Selection.ShapeRange
        .Top = Application.CentimetersToPoints(3.9)
        .Left = Application.CentimetersToPoints(1.57)
        .Height = Application.CentimetersToPoints(11.93)
        .Width = Application.CentimetersToPoints(10.96)
    End With
End With

MBSheet.Activate
MBSheet.ChartObjects("Chart 2").Chart.ChartArea.Copy
mySlide.Select
With mySlide
     .Application.CommandBars.ExecuteMso ("PasteExcelChartSourceFormatting")
     With .Application.ActiveWindow.Selection.ShapeRange
        .Top = Application.CentimetersToPoints(3.9)
        .Left = Application.CentimetersToPoints(13.2)
        .Height = Application.CentimetersToPoints(11.93)
        .Width = Application.CentimetersToPoints(10.96)
    End With
End With
Application.DisplayAlerts = True
End Sub


it is giving me error on With .Application.ActiveWindow.Selection.ShapeRange

Thanks
Rohan
 
Upvote 0
Rohan

What's the error message/description?
 
Upvote 0
Rohan

What is it you are trying to do with the slide in your PowerPoint presentation?
 
Upvote 0
If that's all then it might be the case that you don't actually need the code that's causing the problem.

Try this.
Code:
Sub GlobalMoneyBall()

Dim PowerPointApp As Object
Dim myPresentation As Object
Dim mySlide As PowerPoint.Slide
Dim myShape As Object
Dim MainWB As Workbook
Dim MBSheet As Worksheet

    Application.DisplayAlerts = False
    '*****************Open Excel file where charts are saved*********************
    Workbooks.Open Filename:="J:\Research\Internal\Moneyball.xlsx"
    Set MainWB = Workbooks("Moneyball.xlsx")
    Set MBSheet = MainWB.Sheets("Global charts")
    
    '*****************Open Powerpoint where charts are to be saved********************
    If PowerPointApp Is Nothing Then Set PowerPointApp = CreateObject(class:="PowerPoint.Application")

    Set myPresentation = PowerPointApp.Presentations.Open(Filename:="J:\Research\Internal\Internal Report.pptx")
    Set mySlide = myPresentation.Slides(4)
    
    MBSheet.Activate
    MBSheet.ChartObjects("Chart 1").Chart.ChartArea.Copy
    
    mySlide.Select
    mySlide.Application.CommandBars.ExecuteMso ("PasteExcelChartSourceFormatting")
     
    MBSheet.Activate
    MBSheet.ChartObjects("Chart 2").Chart.ChartArea.Copy
    
    mySlide.Select
    mySlide.Application.CommandBars.ExecuteMso ("PasteExcelChartSourceFormatting")

    Application.DisplayAlerts = True
    
End Sub
 
Upvote 0
Norie

I would need the code as I have to position the chart on that slide. The slide will have 2 charts on the same slide with equal height and width.

Thanks
 
Upvote 0

Forum statistics

Threads
1,215,019
Messages
6,122,707
Members
449,093
Latest member
Mnur

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top