Results 1 to 3 of 3

Macro that Copies Table saved as .RTF in Word & Pastes in PowerPoint as Enhanced Metafile

Threaded View

HRP Macro that Copies Table saved... 11-09-2012, 10:36 AM
HRP Re: Macro that Copies Table... 11-16-2012, 11:24 PM
HRP Re: Macro that Copies Table... 12-05-2012, 10:43 PM
  1. #1
    Registered User
    Join Date
    11-09-2012
    Location
    Manila, Philippines
    MS-Off Ver
    Excel 2003
    Posts
    3

    Exclamation Macro that Copies Table saved as .RTF in Word & Pastes in PowerPoint as Enhanced Metafile

    Hi! I've been trying for days figuring out how to copy a single table saved as Rich Text Format in Word and pasting it in a specific PowerPoint Slide as an Enhanced metafile. What I came across is this code as follows:

    Sub Test()
        Dim WordApp As Object
        Set WordApp = CreateObject("Word.Application")
        With WordApp
    '       Change file name to suit
            .Documents.Open Filename:="D:\file001.rtf"
            .ActiveDocument.Select
            .Selection.Copy
        End With
        ActiveSheet.Range("A1").Select
        ActiveSheet.Paste
        WordApp.Quit
        Set WordApp = Nothing
    End Sub
    However, this code copies a table in Word and pastes it in Excel without the table formatting. I can't find a macro that works specifically for what I need - that is, copy a table in Word, then paste it as an enhanced metafile in PowerPoint. I want the table to be converted to an enhanced metafile because I want to preserve the formatting of the table with lines from Word. Lastly, would it be possible to create a loop such that each table from Word saved as file001.rtf, up to file100.rtf be pasted to slides 1 to 100 respectively in the PowerPoint file, wherein I can also specify a uniform size and position of the pasted tables in PowerPoint? Thank you for your attention and hoping for your immediate response.

    Moderator's Edit: use code tags when posting code. To do so, select your code and click on the # icon at the top of your post window.
    Last edited by arlu1201; 11-17-2012 at 02:24 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1