how to print 2 file together

  • Thread starter Thread starter hoangmai
  • Start date Start date
H

hoangmai

I have 2 file power point: one is in English and another is the translation
version.
Now, I want to print together 2 version in the same page as below:

Slice 1 in English Slice 1 in negative language
Slice 2 in English Slice 2 in negative language
Slice 3 in English Slice 3 in negative language

I do not know how to keep the page number in each slice of translation
version the same as the original one.
Can you show me the way to do that?
Thank you very much. Mai.
 
You have posted this question three times in the last hour. It helps everyone
if you stick to one post!

You would need to combine the presentations (temporarily) to do this. Using
a copy of the first use import slides from files to add the second at the end.

You will now need to adjust the order so that the order is
old slide 1
new slide 1
old slide 2
new slide 2 etc

If it's a very large presentation you can do this with a macro

Sub shuffle()
Dim i As Integer
Dim Ipos As Integer
With ActivePresentation
For i = (.Slides.Count / 2) + 1 To (.Slides.Count) - 1
Ipos = Ipos + 2
..Slides(i).MoveTo (Ipos)
Next
End With
End Sub

How to use vba code samples
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html#vba

Now print as a six up handout

-------------------------------------------
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 
Back
Top