![]() |
|
#1
|
|||
|
|||
|
Hi, I've never used VBA in Word but via Google fugured this..
Code:
Sub ShowPARA()
Dim p As Paragraph, pp As String
For Each p In ActiveDocument.Paragraphs
pp = p.Range.Text
If Val(pp) > 279 Then
Debug.Print pp
Stop
End If
Next
End Sub
This is to let me check the contents for any mistakes. |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
compare each paragraph with the preceding paragraph
|
cyraxote | Word VBA | 6 | 10-09-2015 08:03 AM |
| Replacing paragraph formatting before column break also changes the next paragraph after the break | jjmartin1340 | Word | 3 | 09-21-2015 10:50 PM |
Narrow Paragraph to Wide Paragraph HELP
|
icloudy | Word | 1 | 12-09-2012 03:49 PM |
| spacing within paragraph | psmoore | Word | 1 | 06-22-2010 02:15 AM |
| Paragraph | cloa513 | Word | 1 | 12-29-2009 02:20 AM |