Error Handling while copying from Excel to PowerPoint











up vote
1
down vote

favorite












I have a problem with my code when I'm trying to copy some data from excel to PowerPoint using Excel VBA.



The problem is that it sometimes work properly and with no error but sometimes its crashes and stops during the run.



Sub Test()


Set PowerPointApp = CreateObject("PowerPoint.Application")
Set ppApp = New powerpoint.Application
ppApp.Visible = True
DestinationPPT = "C:UsersSaeedDesktopedit vbatest.pptx"
Set ppPres = PowerPointApp.Presentations.Open(DestinationPPT)
Sheets("Slide3").Activate
Sheets("Slide3").Range("A2").Select
Selection.Copy
ppApp.Activate
ppPres.Slides(3).Select
ppApp.Windows(1).View.Paste
Set shp = ppPres.Slides(3).Shapes(ppPres.Slides(3).Shapes.Count)
shp.Left = 17
shp.Top = 90
ppApp.Windows(1).Selection.Unselect

ppPres.SaveAs "C:UsersSaeedDesktopedit vba" & FileName, ppSaveAsPDF
ppPres.Close
ppApp.Quit
Set ppt = Nothing


I skipped the dim parts and some unimportant ones.



But here is the problem : it always crashes in



ppApp.Windows(1).View.Paste


and I don't know how to fix it since it sometimes runs perfect and sometimes gives me error on that part !
I tried to use On error Goto but nothing changed.
It would be appreciated to help me out in this wierd problem.










share|improve this question


























    up vote
    1
    down vote

    favorite












    I have a problem with my code when I'm trying to copy some data from excel to PowerPoint using Excel VBA.



    The problem is that it sometimes work properly and with no error but sometimes its crashes and stops during the run.



    Sub Test()


    Set PowerPointApp = CreateObject("PowerPoint.Application")
    Set ppApp = New powerpoint.Application
    ppApp.Visible = True
    DestinationPPT = "C:UsersSaeedDesktopedit vbatest.pptx"
    Set ppPres = PowerPointApp.Presentations.Open(DestinationPPT)
    Sheets("Slide3").Activate
    Sheets("Slide3").Range("A2").Select
    Selection.Copy
    ppApp.Activate
    ppPres.Slides(3).Select
    ppApp.Windows(1).View.Paste
    Set shp = ppPres.Slides(3).Shapes(ppPres.Slides(3).Shapes.Count)
    shp.Left = 17
    shp.Top = 90
    ppApp.Windows(1).Selection.Unselect

    ppPres.SaveAs "C:UsersSaeedDesktopedit vba" & FileName, ppSaveAsPDF
    ppPres.Close
    ppApp.Quit
    Set ppt = Nothing


    I skipped the dim parts and some unimportant ones.



    But here is the problem : it always crashes in



    ppApp.Windows(1).View.Paste


    and I don't know how to fix it since it sometimes runs perfect and sometimes gives me error on that part !
    I tried to use On error Goto but nothing changed.
    It would be appreciated to help me out in this wierd problem.










    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I have a problem with my code when I'm trying to copy some data from excel to PowerPoint using Excel VBA.



      The problem is that it sometimes work properly and with no error but sometimes its crashes and stops during the run.



      Sub Test()


      Set PowerPointApp = CreateObject("PowerPoint.Application")
      Set ppApp = New powerpoint.Application
      ppApp.Visible = True
      DestinationPPT = "C:UsersSaeedDesktopedit vbatest.pptx"
      Set ppPres = PowerPointApp.Presentations.Open(DestinationPPT)
      Sheets("Slide3").Activate
      Sheets("Slide3").Range("A2").Select
      Selection.Copy
      ppApp.Activate
      ppPres.Slides(3).Select
      ppApp.Windows(1).View.Paste
      Set shp = ppPres.Slides(3).Shapes(ppPres.Slides(3).Shapes.Count)
      shp.Left = 17
      shp.Top = 90
      ppApp.Windows(1).Selection.Unselect

      ppPres.SaveAs "C:UsersSaeedDesktopedit vba" & FileName, ppSaveAsPDF
      ppPres.Close
      ppApp.Quit
      Set ppt = Nothing


      I skipped the dim parts and some unimportant ones.



      But here is the problem : it always crashes in



      ppApp.Windows(1).View.Paste


      and I don't know how to fix it since it sometimes runs perfect and sometimes gives me error on that part !
      I tried to use On error Goto but nothing changed.
      It would be appreciated to help me out in this wierd problem.










      share|improve this question













      I have a problem with my code when I'm trying to copy some data from excel to PowerPoint using Excel VBA.



      The problem is that it sometimes work properly and with no error but sometimes its crashes and stops during the run.



      Sub Test()


      Set PowerPointApp = CreateObject("PowerPoint.Application")
      Set ppApp = New powerpoint.Application
      ppApp.Visible = True
      DestinationPPT = "C:UsersSaeedDesktopedit vbatest.pptx"
      Set ppPres = PowerPointApp.Presentations.Open(DestinationPPT)
      Sheets("Slide3").Activate
      Sheets("Slide3").Range("A2").Select
      Selection.Copy
      ppApp.Activate
      ppPres.Slides(3).Select
      ppApp.Windows(1).View.Paste
      Set shp = ppPres.Slides(3).Shapes(ppPres.Slides(3).Shapes.Count)
      shp.Left = 17
      shp.Top = 90
      ppApp.Windows(1).Selection.Unselect

      ppPres.SaveAs "C:UsersSaeedDesktopedit vba" & FileName, ppSaveAsPDF
      ppPres.Close
      ppApp.Quit
      Set ppt = Nothing


      I skipped the dim parts and some unimportant ones.



      But here is the problem : it always crashes in



      ppApp.Windows(1).View.Paste


      and I don't know how to fix it since it sometimes runs perfect and sometimes gives me error on that part !
      I tried to use On error Goto but nothing changed.
      It would be appreciated to help me out in this wierd problem.







      excel powerpoint-vba






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 at 13:57









      Saeed Mirshahvaladi

      61




      61
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          My first guess is that you should not paste it into the view but into the slide instead.



          ppPres.Slides(3).shapes.paste


          Cheers
          Jens






          share|improve this answer





















          • Tnx Jens but I have tried that method , its the same . The error happens in this method , I came up with an idea that is to use "On error goto" method for every line. so that when ever error occurs it repeat the line until it copy and paste data but I failed since I may not used that correctly
            – Saeed Mirshahvaladi
            Nov 23 at 12:52











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53432589%2ferror-handling-while-copying-from-excel-to-powerpoint%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          My first guess is that you should not paste it into the view but into the slide instead.



          ppPres.Slides(3).shapes.paste


          Cheers
          Jens






          share|improve this answer





















          • Tnx Jens but I have tried that method , its the same . The error happens in this method , I came up with an idea that is to use "On error goto" method for every line. so that when ever error occurs it repeat the line until it copy and paste data but I failed since I may not used that correctly
            – Saeed Mirshahvaladi
            Nov 23 at 12:52















          up vote
          0
          down vote













          My first guess is that you should not paste it into the view but into the slide instead.



          ppPres.Slides(3).shapes.paste


          Cheers
          Jens






          share|improve this answer





















          • Tnx Jens but I have tried that method , its the same . The error happens in this method , I came up with an idea that is to use "On error goto" method for every line. so that when ever error occurs it repeat the line until it copy and paste data but I failed since I may not used that correctly
            – Saeed Mirshahvaladi
            Nov 23 at 12:52













          up vote
          0
          down vote










          up vote
          0
          down vote









          My first guess is that you should not paste it into the view but into the slide instead.



          ppPres.Slides(3).shapes.paste


          Cheers
          Jens






          share|improve this answer












          My first guess is that you should not paste it into the view but into the slide instead.



          ppPres.Slides(3).shapes.paste


          Cheers
          Jens







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 23 at 9:34









          Jens.Huehn_at_SlideFab.com

          1475




          1475












          • Tnx Jens but I have tried that method , its the same . The error happens in this method , I came up with an idea that is to use "On error goto" method for every line. so that when ever error occurs it repeat the line until it copy and paste data but I failed since I may not used that correctly
            – Saeed Mirshahvaladi
            Nov 23 at 12:52


















          • Tnx Jens but I have tried that method , its the same . The error happens in this method , I came up with an idea that is to use "On error goto" method for every line. so that when ever error occurs it repeat the line until it copy and paste data but I failed since I may not used that correctly
            – Saeed Mirshahvaladi
            Nov 23 at 12:52
















          Tnx Jens but I have tried that method , its the same . The error happens in this method , I came up with an idea that is to use "On error goto" method for every line. so that when ever error occurs it repeat the line until it copy and paste data but I failed since I may not used that correctly
          – Saeed Mirshahvaladi
          Nov 23 at 12:52




          Tnx Jens but I have tried that method , its the same . The error happens in this method , I came up with an idea that is to use "On error goto" method for every line. so that when ever error occurs it repeat the line until it copy and paste data but I failed since I may not used that correctly
          – Saeed Mirshahvaladi
          Nov 23 at 12:52


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53432589%2ferror-handling-while-copying-from-excel-to-powerpoint%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          What visual should I use to simply compare current year value vs last year in Power BI desktop

          Alexandru Averescu

          Trompette piccolo