Paste in Word with Numbering

antonismouf

Board Regular
Joined
Aug 18, 2015
Messages
64
Hello, I am using a macro that creates a Word document and pastes data from Excel in it. I would like two things:
1)Paste the data without the table, but keep the formatting
2)make the pasted data have numbering in the Word document

Could someone please help me with the properties to be added after the:

WdObj.Selection.PasteSpecial

Thanks in advance
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
How about posting the rest of your code; a single line with no context is impossible to work with.
 
Upvote 0
Code:
Sub WordUp()

Dim WdObj As Object, fname As String


fname = Sheets(2).[b1].Value


If fname <> "" Then 'make sure fname is not blank


    Set WdObj = CreateObject("Word.Application")
    
    WdObj.Visible = True
    
    finalrow = Sheets("Prosfora").Range("A9999").End(xlUp).Row
    Sheets("Prosfora").Range("A2:A" & finalrow).Copy
    
    WdObj.Documents.Open Filename:="C:\Users\User\Dropbox\ÐÑÏÃÑÁÌÌÁÔÁ\prosfora template1.docx"
    
    
    With WdObj
    
        .ChangeFileOpenDirectory "C:\Users\User\Dropbox\ÐÑÏÃÑÁÌÌÁÔÁ" 'save Dir
    
        .ActiveDocument.SaveAs Filename:="Ðñïóöïñá " & fname & ".doc"
        
    End With
    
    WdObj.Selection.PasteSpecial Link:=False ', DataType:=wdPasteText , Placement:=wdInLine, DisplayAsIcon:=False
    
    Application.CutCopyMode = False
    
    
    WdObj.ActiveDocument.Save
    Else:
    
    MsgBox ("ÐñïóèÝóôå ¼íïìá ÐåëÜôç")


End If




'With WdObj
'
'    .Selection.HomeKey Unit:=wdLine, Extend:=wdExtend
'    .Selection.MoveUp Unit:=wdScreen, Count:=5, Extend:=wdExtend


'    With ListGalleries(wdNumberGallery).ListTemplates(1).ListLevels(1)
'        .NumberFormat = "%1."
'        .TrailingCharacter = wdTrailingTab
'        .NumberStyle = wdListNumberStyleArabic
'        .NumberPosition = CentimetersToPoints(0.63)
'        .Alignment = wdListLevelAlignLeft
'        .TextPosition = CentimetersToPoints(1.27)
'        .TabPosition = wdUndefined
'        .ResetOnHigher = 0
'        .StartAt = 1
'        With .Font
'            .Bold = wdUndefined
'            .Italic = wdUndefined
'            .Strikethrough = wdUndefined
'            .Subscript = wdUndefined
'            .Superscript = wdUndefined
'            .Shadow = wdUndefined
'            .Outline = wdUndefined
'            .Emboss = wdUndefined
'            .Engrave = wdUndefined
'            .Allcaps = wdUndefined
'            .Hidden = wdUndefined
'            .Underline = wdUndefined
'            .Color = wdUndefined
'            .Size = wdUndefined
'            .Animation = wdUndefined
'            .DoubleStrikeThrough = wdUndefined
'            .Name = ""
'        End With
'        .LinkedStyle = ""
'    End With
'    ListGalleries(wdNumberGallery).ListTemplates(1).Name = ""
'    Selection.Range.ListFormat.ApplyListTemplate ListTemplate:=ListGalleries(wdNumberGallery).ListTemplates(2)


'End With








'With WdObj


'    .ActiveDocument.Close


'    .Quit


'End With


Set WdObj = Nothing


End Sub

Commented is an attempt i made using the macro recorder in word
 
Upvote 0
Try:
Code:
Sub WordUp()
Dim WdApp As Object, WdDoc As Object, WdRng As Object, fldr As String, fname As String, finalrow As Long
fldr = "C:\Users\User\Dropbox\ÐÑÏÃÑÁÌÌÁÔÁ\"
fname = Sheets(2).[b1].Value
finalrow = Sheets("Prosfora").Range("A9999").End(xlUp).Row
If fname <> "" Then 'make sure fname is not blank
    Set WdApp = CreateObject("Word.Application")
    WdApp.Visible = True
    Set WdDoc = WdApp.Documents.Add(fldr & "prosfora template1.docx")
    With WdDoc
        Sheets("Prosfora").Range("A2:A" & finalrow).Copy
        Set WdRng = .Range.Characters.First.Paste
        WdRng.Tables(1).ConvertToText vbTab
        WdRng.ListFormat.ApplyOutlineNumberDefault
        .SaveAs fldr & "Ðñïóöïñá" & fname & ".docx", 12, , , False
    End With
    Application.CutCopyMode = False
Else
    MsgBox ("ÐñïóèÝóôå ¼íïìá ÐåëÜôç")
End If
Set WdRng = Nothing: Set WdDoc = Nothing: Set WdApp = Nothing
End Sub
There are many ways of applying numbering; I've chose one method. If that's not what you want, you should look at Word's Object Model and decide what you want to do (perhaps you have a particular paragraph Style that has numbering and you want to apply that).
 
Upvote 0

Forum statistics

Threads
1,214,427
Messages
6,119,419
Members
448,895
Latest member
omarahmed1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top