Results 1 to 8 of 8

Help: converting new sheets to word document

Threaded View

  1. #1
    Registered User
    Join Date
    05-13-2013
    Location
    Corsham, england
    MS-Off Ver
    Excel 2013
    Posts
    16

    Help: converting new sheets to word document

    Hi

    is there a way to create a macro to automatically save new sheets as a Word document in a specific file

    also i have another code that may need help on

    ARowbot helped me yesterday with this code which I got to say with his fast response to my post i was very pleased with his/her help and can't say thank you enough

    Sub Auto_Quotes()
        Dim MyCell As Range, MyRange As Range
        Dim i As Integer
        
        Set MyRange = Sheets("Summary").Range("A2")
        Set MyRange = Range(MyRange, MyRange.End(xlDown))
    
    Application.ScreenUpdating = False
    
        For Each MyCell In MyRange
            Sheets("Template").Copy After:=Sheets(Sheets.Count)
                With ActiveSheet
                    .Name = MyCell.Value
                    .Range("B25").Value = MyCell.Value
                        For i = 0 To 8
                           .Range("G28").Offset(i).Value = MyCell.Offset(, i + 1).Value
                        Next i
                End With
        Next MyCell
        
        
    Application.ScreenUpdating = True
    
    End Sub
    i have attached a example document of my spreadsheet with the above code added

    Example2015 (1).xlsm
    but i need to add to it so it copys names and addresses from another sheet at the same time as copying the data from summary is this possible
    Last edited by Vaughan.jamie; 04-17-2015 at 08:20 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Converting a Word mailing label document to an Excel
    By MYITCO in forum Excel General
    Replies: 0
    Last Post: 05-13-2013, 01:29 PM
  2. Replies: 3
    Last Post: 11-12-2010, 02:39 AM
  3. converting a MS word document to Excel
    By jon@karhu in forum Excel General
    Replies: 6
    Last Post: 02-10-2009, 02:55 PM
  4. [SOLVED] Converting a Word Document to excel
    By KelB in forum Excel General
    Replies: 2
    Last Post: 03-13-2006, 05:10 AM
  5. Converting a Word document into an Excel one
    By Rageaholic in forum Excel General
    Replies: 2
    Last Post: 06-20-2005, 05:21 PM

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