Discussion:
How do I see the word count for the notes in Powerpoint 2007
(too old to reply)
Vikki
2009-04-29 23:28:01 UTC
Permalink
I can't seem to figure out how to see the word count for the notes only in
Powerpoint 2007.. the properties shows the total pages with notes on, and the
total word count for the entire document? I so don't want to count each
word?? Thanks
Steve Rindsberg
2009-04-30 01:01:16 UTC
Permalink
Post by Vikki
I can't seem to figure out how to see the word count for the notes only in
Powerpoint 2007.. the properties shows the total pages with notes on, and the
total word count for the entire document? I so don't want to count each
word?? Thanks
Here's a macro that's a bit crude but should get you pretty close.

See this if you need to know how to use the code:
How do I use VBA code in PowerPoint
http://www.pptfaq.com/FAQ00033.htm

Sub CountNotesWords()

Dim oSl As Slide
Dim oSh As Shape
Dim lCount As Long

For Each oSl In ActivePresentation.Slides
For Each oSh In oSl.NotesPage.Shapes
If oSh.HasTextFrame Then
If oSh.TextFrame.HasText Then
lCount = lCount + oSh.TextFrame.TextRange.Words.Count
End If
End If
Next
Next

MsgBox lCount

End Sub


==============================
PPT Frequently Asked Questions
http://www.pptfaq.com/

PPTools add-ins for PowerPoint
http://www.pptools.com/
John Wilson
2009-04-30 06:29:01 UTC
Permalink
As well as Steve's macro you can get a count without vba by using Publish >
create handouts in Word > Notes below slides and then use the much more
powerful word count in Word.

The word count will include the slide names but you can either do a little
simple math or select only the notes.
--
john ATSIGN PPTAlchemy.co.uk
Custom vba coding and PPT Makeovers
Free PPT Hints, Tips and Tutorials
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html
Post by Vikki
I can't seem to figure out how to see the word count for the notes only in
Powerpoint 2007.. the properties shows the total pages with notes on, and the
total word count for the entire document? I so don't want to count each
word?? Thanks
Steve Rindsberg
2009-04-30 14:26:26 UTC
Permalink
Post by John Wilson
As well as Steve's macro you can get a count without vba by using Publish >
create handouts in Word > Notes below slides and then use the much more
powerful word count in Word.
Devious, as ever.

Good one!

==============================
PPT Frequently Asked Questions
http://www.pptfaq.com/

PPTools add-ins for PowerPoint
http://www.pptools.com/
John Wilson
2009-04-30 15:05:01 UTC
Permalink
Ha
My belief in MY deviousness has been deflated by dealing with the PR person
from the Wind Turbine Company!

Maybe devious isn't the right word but here is today's example:

Me - "So you ARE refusing to come and talk to us to explain your statement
that having a 400' turbine outside our house won't affect us?

PR - "No I'm not"

Me - "But you are!!"

PR - "I'm not refusing I'm just not going to come"

OT I know but I'm angry!!

john ATSIGN PPTAlchemy.co.uk
Custom vba coding and PPT Makeovers
Free PPT Hints, Tips and Tutorials
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html
Post by Steve Rindsberg
Post by John Wilson
As well as Steve's macro you can get a count without vba by using Publish >
create handouts in Word > Notes below slides and then use the much more
powerful word count in Word.
Devious, as ever.
Good one!
==============================
PPT Frequently Asked Questions
http://www.pptfaq.com/
PPTools add-ins for PowerPoint
http://www.pptools.com/
Steve Rindsberg
2009-04-30 16:00:11 UTC
Permalink
Post by John Wilson
Me - "So you ARE refusing to come and talk to us to explain your statement
that having a 400' turbine outside our house won't affect us?
PR - "No I'm not"
Me - "But you are!!"
PR - "I'm not refusing I'm just not going to come"
Weasels!

When you can't deny it, redefine it so you can.

Have you offered to visit PR?
Got a well-seasoned cricket bat?
Bill Dilworth
2009-04-30 18:57:13 UTC
Permalink
Explain to him that your PR person can not be bothered with meeting their PR
person anyway, so if they will just supply you with free electricity as long
as the tower stands next to your home, you will leave them alone.

Otherwise, you may need to build a 400' tower in front of theirs to maintain
dominance over your wind rights.

Bill D.
Post by Steve Rindsberg
Post by John Wilson
Me - "So you ARE refusing to come and talk to us to explain your statement
that having a 400' turbine outside our house won't affect us?
PR - "No I'm not"
Me - "But you are!!"
PR - "I'm not refusing I'm just not going to come"
Weasels!
When you can't deny it, redefine it so you can.
Have you offered to visit PR?
Got a well-seasoned cricket bat?
Continue reading on narkive:
Loading...