|
Option Explicit
Sub test()
Dim ar, br, cr, i&, j&, r&, strFileName$, strPath$
strPath = ThisWorkbook.Path & "\"
strFileName = strPath & "导出表.xlsx"
If Dir(strFileName) = "" Then MsgBox "未找到数据": Exit Sub
Application.ScreenUpdating = False
cr = [{1,3;2,1;3,4;6,5;7,6;10,7;11,8}]
ReDim ar(1 To 10 ^ 4, 1 To 11)
With GetObject(strFileName)
br = .Worksheets(1).[A1].CurrentRegion.Value
For i = 2 To UBound(br)
r = r + 1
For j = 1 To UBound(cr)
ar(r, cr(j, 1)) = br(i, cr(j, 2))
Next j
Next i
.Close False
End With
r = Cells(Rows.Count, "B").End(xlUp).Row + 1
Cells(r, 2).Resize(UBound(br) - 1, UBound(ar, 2)) = ar
Application.ScreenUpdating = True
Beep
End Sub
|
|