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.
excel powerpoint-vba
add a comment |
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.
excel powerpoint-vba
add a comment |
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.
excel powerpoint-vba
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
excel powerpoint-vba
asked Nov 22 at 13:57
Saeed Mirshahvaladi
61
61
add a comment |
add a comment |
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
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
add a comment |
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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