Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / General PowerPoint Questions / October 2007

Tip: Looking for answers? Try searching our database.

merge up individual ppts into one

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
kashif - 10 Oct 2007 11:08 GMT
Hi can any one please help me out in merging up the presentations and to form
one presentation
thanks in advance
WHKA - 10 Oct 2007 12:27 GMT
For me, I open up a target master presentation, so to speak, which I want to
add content slides to.  Then I open up the smaller presentations, one at a
time, which I am assembling content from.  I then use the copy and paste
technique.  Even the rehearsed timings, if you have any,  seem to transfer in
tact.

> Hi can any one please help me out in merging up the presentations and to form
> one presentation
> thanks in advance
John Wilson - 10 Oct 2007 12:28 GMT
You could of course open and delete all but one slide save as etc OR use
insert slides from files to make one slide presentations - both would be
pretty laborious.

OR you could use vba to do it. Try this (ON ACOPY) see if it does it for you
If you have 2007 change all the .ppt to .pptx:

Sub singles()
Dim i As Integer
Dim osource As Presentation
Dim otarget As Presentation
'make a temp copy
ActivePresentation.SaveCopyAs (Environ("TEMP") _
& "\tempfile.ppt")
Set osource = Presentations.Open(Environ("TEMP") _
& "\tempfile.ppt")
For i = osource.Slides.Count To 1 Step -1
osource.Slides(i).Cut
Set otarget = Presentations.Add(msoTrue)
otarget.Slides.Paste
otarget.SaveAs (Environ("USERPROFILE") & _
"\Desktop\Slide " & CStr(i)) & ".ppt"
otarget.Close
Set otarget = Nothing
Next
osource.Close
'remove temp copy
Kill (Environ("TEMP") & "\tempfile.ppt")
Set osource = Nothing
End Sub

Signature

Amazing PPT Hints, Tips and Tutorials-
http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk

> Hi can any one please help me out in merging up the presentations and to form
> one presentation
> thanks in advance
John Wilson - 10 Oct 2007 12:44 GMT
Sorry that was meant for the previous post!!
Signature

Amazing PPT Hints, Tips and Tutorials-
http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk

> You could of course open and delete all but one slide save as etc OR use
> insert slides from files to make one slide presentations - both would be
[quoted text clipped - 30 lines]
> > one presentation
> > thanks in advance
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.