![]() |
#1
|
|||
|
|||
![]()
This simple macro checks the font size in each paragraph of the doc. But this is not what I want. I need to check if some paragraph contains a string with a different font size from the rest of the paragraph. Can someone help? Thanks!
Example: Macros are not always easy to devise. Code:
Sub FontSize() Dim aRng As Range, aPara As Paragraph Set aRng = ActiveDocument.Range aRng.End = ActiveDocument.Range.End For Each aPara In aRng.Paragraphs If aPara.Range.Font.Size <> 12 Then aPara.Range.Select MsgBox "Check font size" End If aRng.Collapse wdCollapseEnd Next aPara End Sub |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
thomasoj | Word VBA | 3 | 01-15-2020 06:26 AM |
![]() |
Swarup | Word | 31 | 08-28-2018 06:55 PM |
Font size showing different (some superscripted??) but tools show its the same size? | mikkygee | PowerPoint | 4 | 12-14-2015 11:21 PM |
![]() |
WH7262 | Word VBA | 1 | 08-26-2014 03:46 PM |
![]() |
revrossreddick | Word | 2 | 12-28-2011 01:33 PM |