Me gustaria saber si existe alguna forma de hacer una macro en MS Word que busque lo que haya en ese momento en el portapapeles.
La Macro debería tener esta forma, poniendo Selection.Paste no funciona.
Selection.Find.ClearFormatting
With Selection.Find
.Text = ???????????????
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute