Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 05-04-2012, 05:42 AM
JohnWilson JohnWilson is offline Continue Auto Numbering Throughout Entire Presentation Windows 7 64bit Continue Auto Numbering Throughout Entire Presentation Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,914
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

The problem would be PowerPoint knowing exactly how you number - There are a lot of possible variables. If the numbering is straightforward you MIGHT be able to use code like this:



Code:
Sub renum()
Dim num As Long
Dim osld As Slide
Dim oshp As Shape
num = num + 1
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.HasTextFrame Then
If oshp.TextFrame.HasText Then
If oshp.TextFrame.TextRange.ParagraphFormat.Bullet.Type = ppBulletNumbered Then
With oshp.TextFrame.TextRange
.ParagraphFormat.Bullet.StartValue = num
num = num + .Paragraphs.Count - 1
End With
End If
End If
End If
Next oshp
Next osld
End Sub
How to use code
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote
Reply

Tags
bullets, numbering and formatting



Similar Threads
Thread Thread Starter Forum Replies Last Post
Continue Auto Numbering Throughout Entire Presentation rotate my ENTIRE powerpoint presentation zachary PowerPoint 2 03-26-2012 06:28 AM
Table of Contents - Direct Field Implementation - Auto-Update Numbering ztag Word 3 01-19-2012 03:04 PM
Continue Auto Numbering Throughout Entire Presentation Auto-numbering non co-located Requirements in a document acheo Word 1 11-24-2011 05:24 PM
Continue Auto Numbering Throughout Entire Presentation Correct figure auto-numbering JFax Word 1 05-08-2011 09:46 PM
Continue Auto Numbering Throughout Entire Presentation Bullets & Numbering - How to continue numbers in second slide? Learner7 PowerPoint 2 05-17-2010 05:05 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 02:53 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft