E
Eran
I have saved thousands of pages in hundreds of folders. (PhD).
have used Calibri 8 and Calibri 10.
I now have to change the Calibri 8 to Calibri 10 and the Calibri 10 to
calibri 12.
I have used this (see below) and few other varients of this macro, but to no
avail.
may somebody please suggest a solution.
many thanks
EW
p.s. "Find / replace" will not work as their are 1000's of pages.
Sub A()
'
Selection.WholeStory
With Selection.Font
If ActiveDocument.Range.Font.Size = 10 Then
ActiveDocument.Range.Font.Size = 12
Else
If ActiveDocument.Range.Font.Size = 8 Then
ActiveDocument.Range.Font.Size = 10
End If
End If
End With
ActiveDocument.Save
End Sub
have used Calibri 8 and Calibri 10.
I now have to change the Calibri 8 to Calibri 10 and the Calibri 10 to
calibri 12.
I have used this (see below) and few other varients of this macro, but to no
avail.
may somebody please suggest a solution.
many thanks
EW
p.s. "Find / replace" will not work as their are 1000's of pages.
Sub A()
'
Selection.WholeStory
With Selection.Font
If ActiveDocument.Range.Font.Size = 10 Then
ActiveDocument.Range.Font.Size = 12
Else
If ActiveDocument.Range.Font.Size = 8 Then
ActiveDocument.Range.Font.Size = 10
End If
End If
End With
ActiveDocument.Save
End Sub