How To Remove All WordArt in Word Document

Date:2022-12-11 Author:Sandra

You may find a word document with many WordArt watermarks. or just WordArt as text. In today’s tutorial, we are going to learn how to remove all WordArt in Word documents.

Here is a screenshot. Three WordArt as text, Two blue WordArt as the watermarks.

How To Remove All WordArt in Word Document

Go to the view tab. Click on the Macros. Or press Alt and F11 to open Macros quickly.

How To Remove All WordArt in Word Document

Create a Macro.

How To Remove All WordArt in Word Document

Type this code in it.

Sub Deleteartwords()

Dim sh As Shape

For Each sh In ActiveDocument.Shapes

If sh.Type = msoTextBox Then

sh.Delete

End If

Next

End Sub

Or

Sub Deleteartwords()

Dim sh As Shape
For Each sh In ActiveDocument.Shapes
If sh.Type = msoTextEffect Then
sh.Delete
End If
Next
End Sub

How To Remove All WordArt in Word Document

Then run this macro.

Now the WordArt would be deleted at once.

How To Remove All WordArt in Word Document
Copyright Statement: Regarding all of the posts by this website, any copy or use shall get the written permission or authorization from Myofficetricks.

Leave a Reply

Your email address will not be published. Required fields are marked *