Setting a style to a word document created from Excel VBA

mark hansen

Well-known Member
Joined
Mar 6, 2006
Messages
534
Office Version
  1. 2016
Platform
  1. Windows
I have some code I've used in a few projects that creates a new word document (from excel vba) and pastes in a string. I remove the last character (a ") and set the font and font size. What new in this part of the code is I want to set the style to No Space. I recorded the vba from word and paste3d in the lines, but I get an error on the Style line... Any ideas on what I'm doing wrong.

Code:
Sub CreateWordDoc()
  Dim wdapp As Word.Application

  Set wdapp = New Word.Application 'Start word
  With wdapp
    .Visible = True  'See Word on Task bar
    .Activate 'Bring word to the front
    .Documents.Add
  End With
  '===========Copy text from cell====================================
   Range("o12").Copy

  '===================================================================
    With wdapp
        .Selection.PasteSpecial Link:=False, DataType:=wdPasteText, Placement:=wdInLine, DisplayAsIcon:=False
        .Selection.TypeBackspace
        .Selection.HomeKey Unit:=wdStory
        .Selection.Delete Unit:=wdCharacter, Count:=1
        .Selection.WholeStory
        .Selection.Style = ActiveDocument.Styles("No Spacing")
        .Selection.Font.Name = "Arial"
        .Selection.Font.Size = 12
        .Selection.Collapse
    End With
End Sub

Thanks for any ideas
Mark
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
I'm still doing some poking around and discovered "Documents.count" and its returning a zero value. Why is that, I have an open document?
 
Upvote 0
I think I got it.... This seems to work to change the Style of the word document and not leave a zombie process, which I think was also getting in the way.

Code:
Sub CreateWordRpt()
    Dim wdapp As Word.Application
On Error GoTo ErrHandler
    Set wdapp = New Word.Application 'Start word
    With wdapp
          .Visible = True  'See Word on Task bar
          .Activate 'Bring word to the front
          .Documents.Add
    End With
'===============copy information==================================
     Range("O12").Copy   'copy excel range
'==================================================================
    With wdapp
         .Selection.PasteSpecial Link:=False, DataType:=wdPasteText, Placement:=wdInLine, DisplayAsIcon:=False
         .Selection.TypeBackspace
         .Selection.HomeKey Unit:=wdStory
         .Selection.Delete Unit:=wdCharacter, Count:=1
         .Selection.WholeStory  'select all informaiton
         .Selection.Style = ("No Spacing")  'change style
         .Selection.WholeStory  'Selection all informaiton
         .Selection.Range.Font.Name = "Arial"
         .Selection.Range.Font.Size = 11
    End With
    Set wdapp = Nothing
    Exit Sub
ErrHandler:
    Set wdapp = Nothing
 End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,535
Messages
6,114,192
Members
448,554
Latest member
Gleisner2

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