|
- Sub test()
- Dim r%, i%
- Dim km$
- Dim arr, brr
- Dim wb As Workbook
- Dim ws As Worksheet
- Dim d As Object
- Dim rng As Range
- Set d = CreateObject("scripting.dictionary")
- Application.ScreenUpdating = False
- Application.DisplayAlerts = False
- With ThisWorkbook.Worksheets("查询")
- For i = 1 To 4
- If .Shapes("OptionButton" & i).OLEFormat.Object.Object.Value = True Then
- km = .Shapes("OptionButton" & i).OLEFormat.Object.Object.Caption
- End If
- Next
- If km <> empth Then
- mypath = ThisWorkbook.Path & ""
- myname = km & ".xlsx"
- If Dir(mypath & myname) = "" Then
- MsgBox myapth & myname & "不存在!"
- Exit Sub
- End If
- Set wb = GetObject(mypath & myname)
- With wb
- With .Worksheets(1)
- .AutoFilterMode = False
- r = .Cells(.Rows.Count, 1).End(xlUp).Row
- c = .Cells(1, .Columns.Count).End(xlToLeft).Column
- brr = .Range("a2").Resize(r - 1, c)
- For i = 1 To UBound(brr)
- d(brr(i, 2)) = Empty
- Next
- End With
- .Close False
- End With
- End If
- End With
- With ThisWorkbook
- With .Worksheets(km)
- r = .Cells(.Rows.Count, 1).End(xlUp).Row
- c = .Cells(1, .Columns.Count).End(xlToLeft).Column
- If r = 1 Then
- .Range("a2").Resize(UBound(brr), UBound(brr, 2)) = brr
- Else
- arr = .Range("a1").Resize(r, c)
- Set rng = .Rows(r + 1)
- For i = 2 To UBound(arr)
- If d.exists(arr(i, 2)) Then
- Set rng = Union(rng, .Rows(i))
- End If
- Next
- rng.Delete
- r = .Cells(.Rows.Count, 1).End(xlUp).Row
- .Cells(r + 1, 1).Resize(UBound(brr), UBound(brr, 2)) = brr
- End If
- End With
- End With
- Application.ScreenUpdating = True
- MsgBox "数据导入完毕!"
- End Sub
复制代码 |
|