Skip to content
Word Made Easy
Home Word Tutorials PowerPoint Tutorials Teacher Resources YouTube Videos
Home Word Tutorials PowerPoint Tutorials Teacher Resources YouTube Videos

How to Remove All Images in Word: 2 Easy Methods (Quick Guide)

Microsoft Word, Tables, Images & Media

To remove all images in Word, use Find and Replace with the ^g search code for pictures sitting in line with text, or run a short VBA macro when the pictures use text wrapping. Both clear every matching image in one pass, leaving your text untouched. If you need the opposite job, see how to insert a picture in Word.

Save a copy of the document first — image removal cannot be undone once the file is saved and closed. In this guide, you’ll learn 2 easy methods to remove all images in Word, the VBA code for the macro, and how to add that macro to the Quick Access Toolbar.


Contents hide
1 Why Remove All Images in Word?
2 How to Remove All Images in Word: Step-by-Step
3 Method 1: How to Remove All Images in Word with Find and Replace
4 Method 2: How to Remove All Images in Word with a VBA Macro
5 Add the Macro to the Quick Access Toolbar
6 Which Method Should You Use?
7 Common Problems When Removing All Images in Word
8 Pro Tips for Removing All Images in Word
9 FAQs
10 Conclusion
11 Related Tutorials
12 Word Tutorials

Why Remove All Images in Word?

Deleting pictures one at a time is slow in a long document. Pressing Ctrl + A then Delete is faster, but it strips the text as well. Both methods below target the pictures specifically and leave everything else in place.

Four things to know before you start:

  • Save a copy first. There is no image-only undo once the file is closed.
  • Find and Replace handles pictures set to In Line with Text.
  • The VBA macro handles floating pictures that use text wrapping.
  • Add the macro to the Quick Access Toolbar if this is a job you do often.

Watch the Video Tutorial

If you prefer to see this in action, the full video walkthrough is below, showing each method step by step.


How to Remove All Images in Word: Step-by-Step

Start with Method 1. It takes about ten seconds and clears most documents completely. If pictures survive it, they are floating rather than inline, and Method 2 finishes the job.


Method 1: How to Remove All Images in Word with Find and Replace

This is the fastest way to remove all images in Word when the pictures are positioned In Line with Text. Word treats an inline picture as a character, which means a search code can find it.

Open Find and Replace

  1. Open the document.
  2. Press Ctrl + H.
  3. The Find and Replace window opens on the Replace tab.
Microsoft Word Find and Replace dialog opened with Ctrl and H to remove all images in Word

Enter the Image Search Code

  1. Click inside Find what.
  2. Type ^g — a caret followed by a lowercase g.
  3. Leave Replace with completely empty.

^g is Word’s search code for a graphic. Because the replacement field is empty, each graphic is swapped for nothing and disappears.

Make Sure Use Wildcards Is Off

Select More to expand the search options and confirm Use wildcards is unticked. With wildcards on, Word reads ^g as literal characters and finds nothing.

Replace the Images with Nothing

  1. Check Replace with is empty.
  2. Check Use wildcards is off.
  3. Select Replace All.
  4. Select OK on the confirmation message.
  5. Close the Find and Replace window.
Microsoft Word Find and Replace dialog showing the Replace All button used to clear every inline picture

👉 Word reports the number of replacements it made. Seven replacements means seven pictures gone.

Check the Image Text Wrapping

One limitation matters here. ^g only finds pictures set to In Line with Text. A picture using Square, Tight, Behind Text or any other wrapping is a floating object, not a character, so the search never sees it.

If one or two survive, click each and press Delete. If a dozen survive, use Method 2 instead. Either way, check for empty pages afterwards — removing pictures often leaves one behind, and how to delete an extra page in Word covers the stubborn cases.


Method 2: How to Remove All Images in Word with a VBA Macro

A short macro will remove all images in Word regardless of their wrapping — inline and floating pictures both go in a single run. Setting it up takes two minutes once, then it is permanently available in every document on that computer.

Enable the Developer Tab

  1. Select File.
  2. Select Options.
  3. Open Customize Ribbon.
  4. Tick Developer in the Main Tabs list.
  5. Select OK.

The tab stays visible from now on — for the full walkthrough and the fixes when it refuses to appear, see how to add the Developer tab in Word.

Create the Remove All Pictures Macro

  1. Open the Developer tab.
  2. Select Macros.
  3. Type RemoveAllPictures as the macro name.
  4. Select Create.
Microsoft Word Developer tab showing the Macros dialog used to create the macro that removes all images

The Visual Basic editor opens with an empty macro. Delete everything in that window and paste the code below in its place.

Sub RemoveAllPictures()
Dim i As Long
' Remove pictures placed in line with text
For i = ActiveDocument.InlineShapes.Count To 1 Step -1
ActiveDocument.InlineShapes(i).Delete
Next i
' Remove floating pictures that use text wrapping
For i = ActiveDocument.Shapes.Count To 1 Step -1
If ActiveDocument.Shapes(i).Type = msoPicture Or _
ActiveDocument.Shapes(i).Type = msoLinkedPicture Then
ActiveDocument.Shapes(i).Delete
End If
Next i
End Sub

Both loops count backwards on purpose. Deleting forwards renumbers the remaining items mid-loop and Word skips every second picture.

  1. Press Ctrl + S to save the macro.
  2. Close the Visual Basic editor.
Visual Basic editor showing the RemoveAllPictures macro and the Run button used to remove all images in Word

Run the Macro

  1. Open Developer.
  2. Select Macros.
  3. Select RemoveAllPictures.
  4. Select Run.

👉 Every picture clears at once, including the floating images Find and Replace left behind. The macro deletes pictures only — text boxes, charts and drawn shapes stay where they are.


Add the Macro to the Quick Access Toolbar

Turn the macro into a one-click button if this is a regular job.

  1. Select File, then Options.
  2. Select Quick Access Toolbar.
  3. Open the Choose commands from list and select Macros.
  4. Select Normal.NewMacros.RemoveAllPictures.
  5. Select Add, then OK.

👉 The button appears at the top of the Word window. Hover to confirm the name, then click it to clear every picture in the open document.


Which Method Should You Use?

ApproachBest ForWhat You Do
Method 1 — Find and ReplaceInline pictures, one-off jobsPress Ctrl + H and search for ^g
Method 2 — VBA macroFloating pictures and mixed documentsRun the RemoveAllPictures macro
Quick Access Toolbar buttonDoing this every weekAdd the macro as a toolbar button

Best choice: Try Find and Replace first. It needs no setup and clears most documents. Build the macro once the leftovers start costing you more time than the setup would.


Common Problems When Removing All Images in Word

Some Images Are Still There

The survivors use text wrapping rather than inline positioning, so ^g cannot find them. Click one and open Layout Options to confirm. Delete them by hand, or run the macro in Method 2.

Replace All Does Not Remove Any Pictures

Check three things: ^g is in Find what with a lowercase g, Replace with is completely empty, and Use wildcards is unticked. Wildcards is the usual culprit.

The Developer Tab Is Missing

Open File → Options → Customize Ribbon, tick Developer under Main Tabs and select OK. On a managed work computer the tab may be blocked by policy, in which case Method 1 is your only option.

The Macro Does Not Appear in the List

Open Developer → Macros and set Macros in to All active templates and documents. If the macro is still missing, it was not saved before the editor closed — create it again and save with Ctrl + S.


Pro Tips for Removing All Images in Word

  • Save a copy before every run. Removal is not reversible after the file is closed.
  • Run Method 1 first even when you plan to use the macro — it tells you how many pictures were inline.
  • If you only want the pictures out of the way rather than gone, fade them instead — see how to make an image transparent in Word.
  • The macro saves to Normal.dotm, so it works in every document on that computer but does not travel with the file.
  • Check for empty pages and stranded captions after a bulk removal.

FAQs

How do I remove all images in Word?

To remove all images in Word, press Ctrl + H, enter ^g in Find what, leave Replace with empty, check Use wildcards is off and select Replace All. This clears every inline picture.

Can I remove all pictures in Word without deleting the text?

Yes. Both methods target pictures specifically, so paragraphs, tables and headings stay untouched. Selecting the whole document with Ctrl + A is what removes text as well.

Why are some images still there after using Replace All?

Those pictures use text wrapping rather than In Line with Text, so the ^g search cannot see them. Delete them manually or run the VBA macro.

What code do I use to find images in Word?

Enter ^g in Find what — a caret followed by a lowercase g. It is Word’s search code for a graphic.

How can I remove images with text wrapping in Word?

Use a VBA macro that loops through the document’s Shapes collection as well as its InlineShapes collection. The full code and setup steps are in Method 2 above.

How do I add the Developer tab in Word?

Select File → Options → Customize Ribbon, tick Developer under Main Tabs and select OK. The tab stays visible until you untick it.

Can I undo removing all images in Word?

Press Ctrl + Z immediately and the pictures return. Once the file is saved and closed, the undo history is gone, which is why you should save a copy first.

Does the macro delete text boxes and shapes too?

No. The code checks each object’s type and deletes only pictures, so text boxes, charts and drawn shapes remain in the document.


Conclusion

To remove all images in Word, press Ctrl + H, search for ^g, leave the replacement empty and select Replace All. That clears every inline picture in seconds.

When pictures survive because they float rather than sit inline, build the RemoveAllPictures macro once and pin it to the Quick Access Toolbar. After that it is a single click, in any document, forever.

Save a copy before you run either method. Then, when you rebuild the document with the pictures you actually want, start with how to crop a picture into a circle in Word.


Related Tutorials

  • How to Add a Shadow to a Picture in Word: 2 Easy Methods
  • How to Insert a Picture into a Shape in Word
  • How to Create a Fillable Form in Word

Word Tutorials

Recent Microsoft Word Tutorials

  • How to View Two Pages Side by Side in Word: 2 Easy Methods (Quick Guide)

    August 29, 2026
  • Open Two Documents Side by Side in Word: 2 Easy Steps (Quick Guide)

    August 29, 2026
  • How to Open Word in Safe Mode: 2 Easy Methods (Quick Guide)

    August 29, 2026

Browse the complete collection for help with formatting, layout, pages, tables, images, and document setup.

View all Word tutorials
Watch on YouTube

For Microsoft support documentation, visit the official Microsoft guidance.

Like this:

Like Loading…
microsoft word Microsoft Word image formatting Microsoft Word tutorial remove all images in Word
←Make a Picture Fill a Page in Word: 2 Easy Methods (Quick Guide)
How to Insert Pound Sign in Word: 2 Easy Methods (Quick Guide)→

Comments

Leave a ReplyCancel reply

Meet the Author

Patrick Elliott standing outdoors holding his dog.

I’m Patrick Elliott, the creator of Word Made Easy. I’m an educator and Inclusion Lead, and I use Microsoft Word and PowerPoint daily for planning, documentation, and classroom resources.

Every guide is tested step-by-step before publishing (usually in Microsoft 365). You’ll also find practical walkthroughs on my YouTube channel.

More:About me.Contact.YouTube

Explore More

  • Word Tutorials
  • PowerPoint Tutorials
  • Teacher Resources
  • YouTube Videos

YouTube

Recent Tutorials

  • How to View Two Pages Side by Side in Word: 2 Easy Methods (Quick Guide)August 29, 2026
  • Open Two Documents Side by Side in Word: 2 Easy Steps (Quick Guide)August 29, 2026
  • How to Open Word in Safe Mode: 2 Easy Methods (Quick Guide)August 29, 2026
  • How to Replace Text in Word: 2 Easy Methods (Quick Guide)August 29, 2026
  • How to Export a Single Page in Word: 5 Easy Steps (Quick Guide)August 29, 2026

Recent Teacher Resources

  • Common Exception Words Set 8 Handwriting Workbook – FoundationSeptember 10, 2026
  • Common Exception Words Set 7 Handwriting Workbook – FoundationSeptember 10, 2026
  • Common Exception Words Set 6 Handwriting Workbook – FoundationSeptember 10, 2026
  • Common Exception Words Set 5 Handwriting Workbook – FoundationSeptember 10, 2026
  • Common Exception Words Set 4 Handwriting Workbook – FoundationSeptember 10, 2026
Word Made Easy

Explore

  • →Home
  • →Word Tutorials
  • →PowerPoint Tutorials
  • →Teacher Resources
  • →YouTube Videos

Categories

  • →Page Layout & Sections
  • →Tables, Images & Media
  • →Word Formatting Basics
  • →Word Productivity & Automation

Author

  • →About Me
  • →Contact
  • →YouTube
Privacy Policy Cookie Policy Terms of Use
© 2012–2026 Word Made Easy. Content is protected.
Your privacy choices

We use cookies and similar technologies to make this site work, understand how it is used, and show relevant content and advertising. You can accept all cookies, deny non-essential cookies, or manage your preferences. You can change your choice at any time.

Functional Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
  • Manage options
  • Manage services
  • Manage {vendor_count} vendors
  • Read more about these purposes
Manage preferences
  • {title}
  • {title}
  • {title}

Discover more from Word Made Easy

Subscribe now to keep reading and get access to the full archive.

Continue reading

Loading Comments...
%d