我有1000多个pdf文件,我想从pdf中提取/提取数据。如果我使用pdf进行excel转换,则将花费很长时间,因此我考虑使用vba将数据从pdf转换为excel。
PDF格式如下: 20XX年 3月
唯一标识号(UIN) 公司名称
详细信息价值IncomeTax间接税OtheTaxes 销量20000 1000 10000 500 购买20000 500500 0 豁免3000 0 0 0
我在Excel中要求的格式如下:
一年月的UIN公司名称详细信息价值收入税收间接其他税收
答案 0 :(得分:0)
有些在线工具可以为您完成此任务。此外,如果要考虑将文件夹中的所有PDF文件转换为文本文件,则可以轻松地将所有文本文件的文本导入Excel的文件夹中,然后以所需的任何方式进行操作。 PDF文件实质上是有关类固醇的文本文件。如有其他问题,请发回。
如何将一个文件夹中的多个文本文件导入到一个工作表中?
Sub Test()
'UpdatebyExtendoffice6/7/2016
Dim xWb As Workbook
Dim xToBook As Workbook
Dim xStrPath As String
Dim xFileDialog As FileDialog
Dim xFile As String
Dim xFiles As New Collection
Dim I As Long
Set xFileDialog = Application.FileDialog(msoFileDialogFolderPicker)
xFileDialog.AllowMultiSelect = False
xFileDialog.Title = "Select a folder [Kutools for Excel]"
If xFileDialog.Show = -1 Then
xStrPath = xFileDialog.SelectedItems(1)
End If
If xStrPath = "" Then Exit Sub
If Right(xStrPath, 1) <> "\" Then xStrPath = xStrPath & "\"
xFile = Dir(xStrPath & "*.txt")
If xFile = "" Then
MsgBox "No files found", vbInformation, "Kutools for Excel"
Exit Sub
End If
Do While xFile <> ""
xFiles.Add xFile, xFile
xFile = Dir()
Loop
Set xToBook = ThisWorkbook
If xFiles.Count > 0 Then
For I = 1 To xFiles.Count
Set xWb = Workbooks.Open(xStrPath & xFiles.Item(I))
xWb.Worksheets(1).Copy after:=xToBook.Sheets(xToBook.Sheets.Count)
On Error Resume Next
ActiveSheet.Name = xWb.Name
On Error GoTo 0
xWb.Close False
Next
End If
End Sub