Help tweaking VBA code to paste into word

STEVENS3010

Board Regular
Joined
Feb 4, 2020
Messages
89
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi all,

I have the following code which I am using to copy a range from excel and pasting into a word document. Could somebody please help me understand how to tweak it slightly so that the paste is done with unformatted text?

VBA Code:
Sub ExcelToWord()

Dim wordApp As Word.Application

Dim mydoc As Word.Document

Set wordApp = New Word.Application

wordApp.Visible = True

Set mydoc = wordApp.Documents.Add()

ThisWorkbook.Worksheets("sheet2").Range("A1:A30").Copy

mydoc.Paragraphs(1).Range.Paste

CutCopyMode = False

End Sub
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Google seems to think that this should work...
Code:
mydoc.Paragraphs(1).Range.PasteSpecial Link:=False, DataType:= 2' wdPasteText 
Application.CutCopyMode = False
HTH. Dave
 
Upvote 0

Forum statistics

Threads
1,215,731
Messages
6,126,539
Members
449,316
Latest member
sravya

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