Advertisement
ikostello

Caret to space in Word

Nov 15th, 2022 (edited)
1,920
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VisualBasic 0.52 KB | Source Code | 0 0
  1. Sub caret2space()
  2. '
  3. ' Caret to Space Macro
  4. '
  5. '
  6.    Selection.Find.ClearFormatting
  7.     Selection.Find.Replacement.ClearFormatting
  8.     With Selection.Find
  9.         .Text = "^13"
  10.         .Replacement.Text = " "
  11.         .Forward = True
  12.         .Wrap = wdFindContinue
  13.         .Format = False
  14.         .MatchCase = False
  15.         .MatchWholeWord = False
  16.         .MatchWildcards = True
  17.         .MatchSoundsLike = False
  18.         .MatchAllWordForms = False
  19.     End With
  20.     Selection.Find.Execute Replace:=wdReplaceAll
  21. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement