Get Formatted (styled) data from word into excel

daneyuleb

New Member
Joined
Dec 8, 2021
Messages
9
Office Version
  1. 365
Platform
  1. Windows
I am able to import an entire word document and put it in a shapes text box (not a userform texbox).
But...I can only manage to bring in the text--I'm losing all bolding/italics/etc. Can some one clue me on how to bring in all that formatting with the word data?

The below method puts the word data in the clipboard, then sets the textbox contents to the clipboard via the clipboard contents object's gettext method. Works fine if all I needed was the unformatted text...

If I manually paste the data that the below code puts in the clipboard, btw--it does show the formatting. So I know it's there, just don't know how to get it out into my non-userform textbox.

VBA Code:
Dim MyDataObj As New DataObject
    Set docAppl = CreateObject("Word.Application")
    Set docMyDoc = CreateObject("Word.document")
 
     Set docMyDoc = Documents.Open("my_word_doc.docx", Visible = False)
  
    With docMyDoc
    .Range(Start:=0, End:=.Characters.count).Copy

    MyDataObj.GetFromClipboard
    ActiveSheet.Shapes("Textbox1").TextFrame.Characters.Text = MyDataObj.GetText()
 
    End With
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

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