LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 13
Default Unembed photos in a list of word documents from Excel

Hi Everyone,

I have posted this question already in the group with no results.
Now, I have done some of the macro but please help me on what is
missing. Thank you in advance.

I have an excel sheet in which it has a column full of paths of Word
files of which some are big in size due to the embeded images it
contains (mostly done through insertPicturefrom file). Can someone
please help me make a macro which would go through all the files one by
one, check for photos, if found delete them or unembed them and then
save changes.


CELL B1 CONTAINS THE DIRECTORY PATH AND COLUMN B (FROM ROW 4) CONTAINS
FILE NAMES

----------------Code Start------------------------------------

Dim WordApp As Word.Application
Set WordApp = New Word.Application
WordApp.Visible = False

For Each nDocFile In Range("B4:B" & FindLastRow("B4")).Cells
sDoc = Range("B1").Value & Application.PathSeperator &
nDocFile.Value
nDocFile.Select

WordApp.Documents.Open (sDoc)

'WHAT SHOULD I CODE HERE???

WordApp.Documents.Close savechanges:=True

Next

WordApp.Quit
Set WordApp = Nothing

------------------------CODE
ENDS------------------------------------------

 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do I delete documents from the start list in word and excel? john Excel Discussion (Misc queries) 1 April 18th 10 03:36 PM
Printing Word Documents from Excel Richard Excel Discussion (Misc queries) 0 June 13th 08 04:20 PM
Too many word documents, can Excel HELP!!! Jerry Excel Discussion (Misc queries) 1 May 13th 08 08:07 PM
Ever use Excel for documents instead of Word? [email protected] Excel Discussion (Misc queries) 2 March 18th 05 10:55 AM
Inserting Photos into Excel and linking to Word. Uploading Photos Excel Discussion (Misc queries) 0 March 17th 05 08:05 PM


All times are GMT +1. The time now is 04:25 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"