Copy Excel table to Word with VBA. Send a filtered Excel table to Word
Check out my online courses www.easyexcelanswers.com/courses.html
All my courses include online support and a user manual
Let me teach you the VBA that I have learn in my five years of consulting
Let’s take the frustration out of user forms
Become an Affiliate and earn 25% on Course Sales
For more help visit my website www.easyexcelanswers.com or email me at easyexcelanswers@gmail.com.
Contact me regarding customizing this template for your needs.
Click for online Excel Consulting
I am able to provide online help on your computer at a reasonable rate.
I use a Blue condenser Microphone to record my videos, here is the link
Check out Crowdcast for creating your webinars
If you need to buy Office 2019 follow
I use Tube Buddy to help promote my videos
Check them out
Follow me on Facebook
TWEET THIS VIDEO
Follow me on twitter
easyexcelanswers
IG @barbhendersonconsulting
You can help and generate a translation to you own language
*this description may contain affiliate links. When you click them, I may receive a small commission at no extra cost to you. I only recommend products and services that I’ve used or have experience with.
code
Sub copytabletoword()
Dim tbl As Excel.Range
Dim newdoc As Word.document
Dim wordObject As Object
Dim wordDocument As Object
Dim wordTable As Object
Application.ScreenUpdating = False
Application.EnableEvents = False
Set tbl = ThisWorkbook.Worksheets(Sheet1.Name).ListObjects(“Table1″).Range
On Error Resume Next
If WordApp Is Nothing Then Set WordApp = CreateObject(class:=”Word.Application”)
Set pageEditor = xInspect.WordEditor
WordApp.Visible = True
WordApp.Activate
Set newdoc = WordApp.Documents.Add
Sheet1.Range(“Table1[#All]”).Copy
newdoc.Paragraphs(1).Range.PasteExcelTable _
LinkedToExcel:=False, _
WordFormatting:=False, _
RTF:=False
Application.ScreenUpdating = True
Application.EnableEvents = True
Set pageEditor = Nothing
‘Clear The Clipboard
Application.CutCopyMode = False
End Sub
Watch more new videos about Excel Office | Synthesized by Mindovermetal English
🥰😍