![]() |
|
|
|
#1
|
|||
|
|||
|
Something like this provided each cc line constitutes a singe paragraph. Change oDoc to represent your objDoc. Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim oDoc As Word.Document
Dim oRng As Word.Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = "cc"
While .Execute
If oRng.Start = oRng.Paragraphs(1).Range.Start Then
With oRng
.MoveEnd wdParagraph
With .Font
.Name = "Times New Roman"
.Size = 12
End With
.Collapse wdCollapseEnd
End With
End If
Wend
End With
End Sub
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Loop action in Word until not found
|
kilburfi | Word VBA | 2 | 07-12-2013 01:26 AM |
Reformat line lengths
|
joe925 | Word | 1 | 03-18-2013 05:06 PM |
| reformat file | renato | Word | 1 | 06-13-2012 06:32 AM |
Macro to loop in Word
|
Yamaha Rider | Word VBA | 2 | 02-07-2012 05:33 PM |
Bad view when using Find and Find & Replace - Word places found string on top line
|
paulkaye | Word | 4 | 12-06-2011 11:05 PM |