|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
Sub qs()
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Dim pth, arr, ar, brr, rng As Range
Dim strSQL, str_cnn
strPath = ThisWorkbook.Path & "\大表2.xlsx"
Set cnn = CreateObject("adodb.connection")
If Application.Version < 12 Then
str_cnn = "Provider=Microsoft.jet.OLEDB.4.0;Extended Properties=Excel 8.0;Data Source=" & strPath
Else
str_cnn = "Provider=Microsoft.ACE.OLEDB.12.0;Extended Properties=Excel 12.0;Data Source=" & strPath
End If
cnn.Open str_cnn
strSQL = "SELECT * FROM [工单明细报表$a:c] where 申请书号 is not null"
Set rst = cnn.Execute(strSQL)
arr = rst.GetRows
ReDim ar(0 To UBound(arr, 2), 0 To UBound(arr))
For i = 0 To UBound(arr, 2)
For j = 0 To UBound(arr)
ar(i, j) = arr(j, i)
Next
Next
brr = Sheet1.Range("a1").CurrentRegion.Value
With Sheet1
For x = 2 To UBound(brr)
For j = 0 To UBound(ar)
If brr(x, 1) = ar(j, 0) Then
brr(x, 2) = Date
brr(x, 3) = ar(j, 1)
brr(x, 4) = ar(j, 2)
Exit For
End If
Next
Next
Sheet1.Range("a1").Resize(UBound(brr), UBound(brr, 2)) = brr
End With
cnn.Close
Set cnn = Nothing
Application.ScreenUpdating = True
Application.DisplayAlerts = True
End Sub
|
|