Results 1 to 21 of 21

Copied excel table to Word, but need Word opening in landscape

Threaded View

  1. #1
    Forum Contributor
    Join Date
    08-10-2017
    Location
    Lansing, Michigan
    MS-Off Ver
    2016
    Posts
    140

    Copied excel table to Word, but need Word opening in landscape

    Im not sure if this is possible or not, so I wanted to reach out. I currently have a macro to copy my excel table and have this table opened up in Word...and it works great. The only other thing I am trying to do is have this table viewed in landscape when word opens up instead of changing it to landscape within Word every single time I use this macro. Is this at all possible?

    If there's a better way to have these tables fully viewable in word without changing it to landscape in general or changing anything within Word itself, then please inform me. I will not be the one viewing these copied tables, which is why I am asking if theres a way to code this so these tables are fully viewable upon Word opening up.

    Here's the working code I have that opens up the copied table in Word...if that matters:

    Option Explicit
     
    Sub PasteToWord()
         
        Dim AppWord         As Word.Application
        Set AppWord = CreateObject("Word.Application")
        AppWord.Visible = True
         '  Change the range to suit your needs. See the How to Use for this code
        Sheets("Sheet1").Range("A34:K91").Copy
        AppWord.Documents.Add
        AppWord.Selection.Paste
        Application.CutCopyMode = False
         
        Set AppWord = Nothing
         
    End Sub
    Thanks!
    Last edited by jennis7242; 05-14-2018 at 06:25 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Extract Word header table data to excel (closed word document)
    By Yakov on Excel in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-14-2017, 02:12 PM
  2. Deleting/removing content on Word table using Excel VBA (not Word VBA)
    By frankyuen1028 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-10-2016, 06:28 AM
  3. [SOLVED] Paste Excel object into Word document in landscape?
    By zijin_cheng in forum Excel General
    Replies: 4
    Last Post: 12-10-2014, 07:30 PM
  4. Convert Word to Excel based upon Word Table of Contents
    By jcappuccino7 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-06-2013, 01:25 PM
  5. Replies: 7
    Last Post: 04-21-2009, 02:50 AM
  6. Copied range from excel to word (but not in table-form)
    By empyreum@hotmail.com in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-03-2006, 09:15 AM
  7. Replies: 4
    Last Post: 02-06-2006, 05:00 AM

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