Microsoft Word Delete All Photos In Document Mac
How to remove all pictures from document in Word?
Jun 03, 2019 The documents that you create in Microsoft Word can be opened and read from within Microsoft Word at any time. This is possible through the file navigation feature that is available on the Open window of the File menu. You can, however, also use this navigation feature to find and delete documents while you are browsing through Microsoft Word. If the problem still occurs, quit Microsoft Word, and restore the file to its original location. Then, go to the next step. If the problem seems to be resolved, you can move the com.microsoft.Word.plist file to the trash. Quit all Microsoft Office for Mac programs. On the Go menu, click Home. Open Library.
If you want to remove all pictures and keep all formatting unchanged in a document, how can you do? This tutorial will show you some tricky things to remove all pictures without changing formatting in the document.
Easily remove all pictures from document with Kutools for Word
Microsoft Word Perform the following steps each time you plan to distribute a final electronic copy of a Word document: Save a copy of your document by clicking the File tab and selecting Save As.Then select where you want to save the file, type a name in the File Name box and click Save.; In your original document, click the Review tab. Select All Markup and then click Markup Options. Nov 20, 2016 If you want to remove all pictures and keep all formatting unchanged in a document, how can you do? In this video I will show you two ways you can quickly delete all your pictures in your word.
Easily remove all pictures from document with Kutools for Word:
The Remove Pictures utility of Kutools for Word can help you quickly remove all pictures from a selected range or the whole document as you need. See the operation as below screenshot shown.
Kutools for Word: with more than 100 handy Word add-ins, free to try with no limitation in 30 days. Download and free trial Now!
Remove all pictures from document by Find and Replace function
Amazing! Use Efficient Tabs in Word (Office) like Chrome, Firefox and New Internet Explorer!
Find and Replace function provides an easy way for value converting or removing, so you can also use it for removing all pictures from the document.
Step 1: Click Home > Replace to open the Find and Replace window;
Step 2: In the Find and Replace window, click the More button to bring up more Search Options, and then click Special > Graphic, and finally click the Replace All button. See screenshot:
Note: you can also enter ^g into the Find what box directly, keep the replace with box empty and then click the Replace All button to remove all pictures from document;
Now all pictures in current documents are removed immediately as below screenshot shown.
Remove all pictures from document by using VBA code
Using VBA code is another easier way to remove all pictures from document. You can use a VBA code as follows to remove all pictures from document.
Step 1: Press the Alt + F11 keys to open the Microsoft Visual Basic for Application window;
Step 2: Click Insert > Module, copy and paste the following VBA code into the Module window;
Step 3: Click the Run button to apply the VBA.
VBA code: Remove all pictures from document:
Now all pictures in current documents are removed immediately as below screenshot shown.
Remove all pictures from document with Kutools for Word
Kutools for Word provides the most convenient way to remove all pictures from the document. It can remove all pictures from the whole document or all pictures from the selected part of the document.
Kutools for Word : with more than 60 handy Word add-ins, free to try with no limitation in 30 days.
Remove pictures from a range:
1. Please select the range contains the pictures you want to remove, and then apply this utility by clicking Kutools > More > Remove Pictures to remove them at once. See screenshot:
Remove pictures from the whole document:
1. Just enable the utility by clicking Kutools > More > Remove Pictures without selecting any part of the document. Then a Kutools for Word dialog box is popping up to remind you the removing of all pictures. Click Yes to start the removing.
Jul 09, 2015 Today, we are taking a big step forward for Mac users—Office 2016 for Mac is now available in 139 countries and 16 languages. Based on feedback from the great Mac Office community, we’ve made major updates to each of the apps, and we couldn’t be more pleased to deliver it first to our Office 365 customers. Collaborate for free with online versions of Microsoft Word, PowerPoint, Excel, and OneNote. Save documents, spreadsheets, and presentations online, in OneDrive. Office 365 customers get the new Office for Mac first. You’ll have Office applications on your Mac or PC, apps on tablets and smartphones for when you're on the. Mar 19, 2020 Hi, I just read that the new Outlook 2015 is already available for Mac users. I have a Office 365 university license. The office blogs article announces that Outlook 2015 is also available for Office 365 university subscribers. Mar 05, 2015 Today is a big day for the Mac community–we're excited to announce that a preview of the new Office 2016 for Mac is now officially available! Office 2016 for Mac is powered by the cloud so you can access your documents anytime, anywhere and on any device. 2015 The Office 2016 Mac Preview is here! Microsoft 365 brings together Office.
Now all pictures in current documents are removed immediately as below screenshot shown.
If you want to have a free trial of this utility, please go to free download the software first, and then go to apply the operation according above steps.
Office Tab - Tabbed Browsing, Editing, and Managing of multiple Documents in Word:
Office Tab brings the tabbed interface as seen in web browsers such as Google Chrome, Internet Explorer new versions and Firefox to Microsoft Word. It will be a time-saving tool and irreplaceable in your work. See below demo:
Demo: Easily remove all pictures from document with Kutools for Word
Delete Documents Microsoft Word 2007
Recommended Word Productivity Tools
Kutools For Word - More Than 100 Advanced Features For Word, Save Your 50% Time
- Complicated and repeated operations can be done one-time processing in seconds.
- Insert multiple images across folders into Word document at once.
- Merge and combine multiple Word files across folders into one with your desired order.
- Split the current document into separate documents according to heading, section break or other criteria.
- Convert files between Doc and Docx, Docx and PDF, collection of tools for common conversions and selection, and so on..
or post as a guest, but your post won't be published automatically.
New Document In Microsoft Word
- To post as a guest, your comment is unpublished.Great reminder about the find & replace>special>graphics option!
Saved me so much work! - To post as a guest, your comment is unpublished.i dont know but some of the graphic is not capturing in replace button.
- To post as a guest, your comment is unpublished.Wow, yes thank you. Several other previous matches did not work.
- To post as a guest, your comment is unpublished.Thank you so much for this how to - it saved me HOURS of work taking photos out of a document!!
nancy - To post as a guest, your comment is unpublished.Your code will only remove inlineshapes, consider the following as I have sometimes seen problems when using collections
Do While ActiveDocument.Shapes.count > 0
ActiveDocument.Shapes(1).Delete
Loop
Do While ActiveDocument.InlineShapes.count > 0
ActiveDocument.InlineShapes(1).Delete
Loop
I use these when changing a file to text only. I also convert all tables to tab delmited
Do While ActiveDocument.Tables.count > 0
ActiveDocument.Tables(1).ConvertToText Separator:=wdSeparateByTabs
Loop
I have not seen any problems with do while loops, but have occasionally when deleting from a collection that I am playing with
I alternatively use .count to get a total of items and use a for next with a step -1 to work on them backwards.
By the way, I work on a Mac and objects sometimes act funny and some windows VBA objects are not even available.