View Single Post
 
Old 03-07-2023, 09:19 AM
carrollmt carrollmt is offline Windows 10 Office 2016
Novice
 
Join Date: Mar 2023
Posts: 4
carrollmt is on a distinguished road
Default

Looks like I was able to get it to work. I wasn't having any luck with the Macro changing SmallCaps that are in the footnotes, but using the following code, it seems to work so far:

Sub Macro2()
Dim rngStory As Range
For Each rngStory In ActiveDocument.StoryRanges
With rngStory.Find
.Font.SmallCaps = True
.Replacement.Font.SmallCaps = False
.Wrap = wdFindContinue
.Execute Replace:=wdReplaceAll
End With
Next rngStory
End Sub
Reply With Quote