H
Harvey
Hi everyone,
I want to change font name,font size , space before and after each
paragraph in each document in a folder with hundreds of documents( now they
have different fonts and sizes so i want them to look the same). Because in
some documents there are extra empty paragraphs first i need to remove them
then apply formatting and here is where i have a problem I used two method
for removing empty paragraphs first find /replace ^p^p with ^p and also the
following macro
Dim parag As Paragraph
For Each parag In ActiveDocument.Paragraphs
With parag.Range
If .Words.Count = 1 Then
parag.Range.Delete
End If
End With
Next parag
For some reason ^P^P method is not able to remove all the empty paragraphs (
move most)
anythoughts?
I want to change font name,font size , space before and after each
paragraph in each document in a folder with hundreds of documents( now they
have different fonts and sizes so i want them to look the same). Because in
some documents there are extra empty paragraphs first i need to remove them
then apply formatting and here is where i have a problem I used two method
for removing empty paragraphs first find /replace ^p^p with ^p and also the
following macro
Dim parag As Paragraph
For Each parag In ActiveDocument.Paragraphs
With parag.Range
If .Words.Count = 1 Then
parag.Range.Delete
End If
End With
Next parag
For some reason ^P^P method is not able to remove all the empty paragraphs (
move most)
anythoughts?