You will need to use a macro. There are a couple of examples on our site here. If you are unable to adapt them to exactly what you need post back with exactly what you need.
http://www.pptalchemy.co.u
Main Topics
Browse All TopicsDear Experts,
I have a 30 Slide PowerPoint presentation that was created without the benefit of a Master Slide. Is there some way of doing one of these two things:
1. Selecting all the text on all the slides and changing the font, size and bold status of all text elements globally?
2. Doing something similar to selecting all the text elements of the same font and size (similar to selecting all the text of the same style in Microsoft Word) and then globally changing the font and size all those text elements?
Sincerely,
Philip T.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You will need to use a macro. There are a couple of examples on our site here. If you are unable to adapt them to exactly what you need post back with exactly what you need.
http://www.pptalchemy.co.u
Try this macro
Sub chgtxtht()
cs = InputBox("Current text size", "Global font sizemodifier", cs)
ns = InputBox("New text size", "Global font sizemodifier", cs)
For Each sl In ActivePresentation.Slides
For i = 1 To sl.Shapes.Count
If sl.Shapes(i).TextFrame.Tex
Next i
Next sl
End Sub
Saqib
Now try this
Sub chgtxtht()
cs = InputBox("Current text size", "Global font sizemodifier", cs)
ns = InputBox("New text size", "Global font sizemodifier", cs)
For Each sl In ActivePresentation.Slides
For i = 1 To sl.Shapes.Count
If sl.Shapes(i).HasTextFrame = True Then
If sl.Shapes(i).TextFrame.Tex
End If
Next i
Next sl
End Sub
Business Accounts
Answer for Membership
by: nederPosted on 2009-09-07 at 23:29:32ID: 25279073
Maybe you can solve this using a macro. Without a master slide you have to format each element by yourself.