Copying contents of text box in Excel to a Word document with formatting

mcomp72

Active Member
Joined
Aug 14, 2016
Messages
275
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2011
Platform
  1. Windows
  2. MacOS
With VBA code, I am trying to copy the contents of a text box that is in an Excel worksheet, and paste the contents into a Word document. I have that part working -- however, it is not pasting the formatting of the text along with the text itself. For instance, some of the text is in bold, some is underlined, the font size is not always the same, etc.

Here's what the text box looks like:
Screenshot (169).png


When pasted into Word, here is what it looks like:
Screenshot (170).png


Here's the code:

VBA Code:
Dim TB As Shape

Set TB = ThisWorkbook.Sheets("Sheet1").Shapes("TextBox1")

'This will copy the text in the text box and paste it to the Word document.
'***Currently, it is not pasting the formatting of the text, only the text itself.
Dim MyData As New DataObject
MyData.SetText TB.TextFrame.Characters.Text
MyData.PutInClipboard

objDoc.Range(objDoc.Range.End - 1, objDoc.Range.End).PasteSpecial

'Make the Word document visible.
objWord.Visible = True

Set TB = Nothing

Does anyone have any idea how I would get it to paste the text with the formatting?
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
MyData.SetText TB.TextFrame.Characters.Text
MyData.PutInClipboard
With that instruction you are not copying the formatted text, you are only passing the plain text.

Replace your code with this:
VBA Code:
  Dim TB As Shape
  Set TB = ThisWorkbook.Sheets("Sheet1").Shapes("TextBox1")
  TB.TextFrame2.TextRange.Copy

  objDoc.Range(objDoc.Range.End - 1, objDoc.Range.End).PasteSpecial
  objWord.Visible = True

  Set TB = Nothing
 
Upvote 0
With that instruction you are not copying the formatted text, you are only passing the plain text.

Replace your code with this:
VBA Code:
  Dim TB As Shape
  Set TB = ThisWorkbook.Sheets("Sheet1").Shapes("TextBox1")
  TB.TextFrame2.TextRange.Copy

  objDoc.Range(objDoc.Range.End - 1, objDoc.Range.End).PasteSpecial
  objWord.Visible = True

  Set TB = Nothing
Thannks! Definitely an improvement! Only problem now is, the blank lines that were in between the sentences in the text box are gone once pasted to Word.

Here's what ended up in Word:
Screenshot (171).png

Any idea how I could get blank lines to appear?
 
Last edited:
Upvote 0
Try:

VBA Code:
  Dim TB As Shape
  Set TB = ThisWorkbook.Sheets("Sheet1").Shapes("TextBox1")
  TB.TextFrame2.TextRange.Copy

  objWord.Visible = True
  objDoc.Range(objDoc.Range.End - 1, objDoc.Range.End).PasteAndFormat wdFormatSurroundingFormattingWithEmphasis
  'or objDoc.Range(objDoc.Range.End - 1, objDoc.Range.End).PasteAndFormat 20
 
Upvote 0
I got a compile error, saying variable not defined on the line with "wdFormatSurroundingFormattingWithEmphasis".

I believe it thinks that is a variable name I created.

I wonder if this might be because I did not use early binding in declaring the Word objects? I used late binding, because this file is for someone else, and I was hoping to avoid having to explain to them how to turn on the Reference for Microsoft Word under Tools > References in the VBE.

Here's how I declared the Word objects:

VBA Code:
Dim objWord As Object
Dim objDoc As Object

Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.documents.Add

Based on this, do you know if wdFormatSurroundingFormattingWithEmphasis should work? Or is that only going to work with early binding?
 
Upvote 0
Once I went into Tools > References and checked the box for Microsoft Word 16.0 Object Library, the variable not defined error went away. So yep, that was the cause of that.

However, the information pasted to Word still did not have the blank lines in it.

I also tried replacing wdFormatSurroundingFormattingWithEmphasis with wdFormatOriginalFormatting, but that didn't solve it.
 
Upvote 0
Upvote 0

Forum statistics

Threads
1,214,620
Messages
6,120,559
Members
448,970
Latest member
kennimack

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