我有一个包含许多表格的word文档。 我使用下面的宏将表导出到excel文件。 Macro to export MS Word tables to Excel sheets
真的很有帮助。我非常感激。
但问题是,我面临的是我的工作没有完全完成。
因此我刚刚开始学习VBA, 我无法知道,如何完成以下任务。
前:
如果word文档有3个带有名称的表 “表1:性别和工资表” “表2:带工资信息的表格” “表3:名称,年龄,性别和工资表”
如果我运行上面的宏,我会成功地将所有表格都添加到我的Excel文档中。 但我的需要是,只是为了得到名字的表。
“有姓名,年龄,性别和工资的表”
请建议我。
提前非常感谢。
答案 0 :(得分:0)
您是否在输入框中输入了正确的表格编号?
此行将导入限制为该特定表:
TableNo = InputBox("This Word document contains " & TableNo & " tables." & vbCrLf & _
"Enter table number of table to import", "Import Word Table", "1")
答案 1 :(得分:0)
我已根据您的要求更改了一些行,请检查并让我知道
Sub ImportWordTable()
Dim wdDoc As Object
Dim wdFileName As Variant
Dim TableNo As string
Dim iRow As Long 'row index in Excel
Dim iCol As Integer 'column index in Excel
wdFileName = Application.GetOpenFilename("Word files (*.doc),*.doc", , _
"Browse for file containing table to be imported")
If wdFileName = False Then Exit Sub '(user cancelled import file browser)
Set wdDoc = GetObject(wdFileName) 'open Word file
With wdDoc
TableNo = wdDoc.tables.Count
If TableNo = 0 Then
MsgBox "This document contains no tables", _
vbExclamation, "Import Word Table"
ElseIf TableNo > 1 Then
TableNo = InputBox("This Word document contains " & TableNo & " tables." & vbCrLf & _
"Enter table name of table to import", "Import Word Table", "table with name , age , gender and salary")
End If
With .tables(TableNo)
'copy cell contents from Word table cells to Excel cells
For iRow = 1 To .Rows.Count
For iCol = 1 To .Columns.Count
Cells(iRow, iCol) = WorksheetFunction.Clean(.cell(iRow, iCol).Range.Text)
Next iCol
Next iRow
End With
End With
Set wdDoc = Nothing
End Sub