VBA Beginner - Copying Data from word file to a new excel document

GreyFoxaBox

New Member
Joined
Jul 17, 2021
Messages
1
Office Version
  1. 2019
Platform
  1. Windows
Hi,

I am an Excel VBA noob. Could you please help me correct this code? The Excel file that gets created is corrupted/blank.

Thanks,
GreyFox


Sub CopyWordtoExcel()

Dim FileName As String
Dim myExcel As Object
Dim myWb As Object
Dim MainData As String

FileName = ActiveDocument.Name

ActiveDocument.Tables(1).Select
Selection.Cut
Selection.TypeParagraph
Selection.InsertBreak Type:=wdPageBreak
Selection.PasteAndFormat (wdFormatOriginalFormatting)
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="1"
Selection.GoTo What:=wdGoToBookmark, Name:="\page"
Selection.Delete Unit:=wdCharacter, Count:=1
Selection.GoTo What:=wdGoToBookmark, Name:="\page"
Selection.Delete Unit:=wdCharacter, Count:=1

MainData = ActiveDocument.Content

Set myExcel = CreateObject("Excel.Application")
Set myWb = myExcel.Workbooks.Add
Range("A1").Value = MainData

Application.DisplayAlerts = False
myWb.SaveAs FileName:="XX" & "\" & FileName & ".xls"

Application.DisplayAlerts = False

myWb.Close False
Set myWb = Nothing
Set myExcel = Nothing

End Sub
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Welcome to the MrExcel Message Board!

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: VBA Beginner - Copying Data from word file to a new excel document
If you have posted the question at more places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

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