ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
楼主: 张雄友

[求助] 提取数据

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2013-7-18 23:33 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
zhaogang1960 发表于 2013-7-18 23:18
复制一个表头:

要查询日期时,将SQL = SQL & "select * from [" & sh.Name & "$] where 代码='Q09'"

改成;SQL = SQL & "select * from [" & sh.Name & "$] where 日期= 2013-5-28"

怎么会出错?

TA的精华主题

TA的得分主题

发表于 2013-7-18 23:59 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
张雄友 发表于 2013-7-18 23:33
要查询日期时,将SQL = SQL & "select * from [" & sh.Name & "$] where 代码='Q09'"

改成;SQL = SQL ...

如果条件是文本,则用单引号括起来
如果条件是日期,则用单#号括起来

TA的精华主题

TA的得分主题

发表于 2013-7-19 09:56 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Sub 提取数据()
Sheets(1).Select
lastrow = Cells(Rows.Count, "l").End(3).Row
arr1 = Range("a2:o" & lastrow)
Sheets(2).Select
lastrow = Cells(Rows.Count, "l").End(3).Row
arr2 = Range("a2:o" & lastrow)
Sheets(3).Select
Sheets(1).Rows(1).Copy
Range("a1").PasteSpecial
For Each myarr In Array(arr1, arr2)
    For n = 1 To UBound(myarr)
        If myarr(n, 12) = "Q09" Then
            i = i + 1
            For j = 1 To UBound(myarr, 2)
                Cells(i + 1, j) = myarr(n, j)
            Next j
        End If        
    Next n
Next myarr
End Sub

TA的精华主题

TA的得分主题

发表于 2013-7-19 09:59 | 显示全部楼层
多表提取数据.rar (46.21 KB, 下载次数: 19)

TA的精华主题

TA的得分主题

发表于 2013-7-19 10:09 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Sub 提取数据()
For Each wsh In Sheets
    If wsh.Name <> "提取数据" Then
        wsh.Select
        lastrow = Cells(Rows.Count, 12).End(3).Row
        arr = Range("a2:o" & lastrow)
        Sheets("提取数据").Select
        For n = 1 To UBound(arr)
            If arr(n, 12) = "Q09" Then
                i = i + 1
                For j = 1 To UBound(arr, 2)
                    Cells(i + 1, j) = arr(n, j)
                Next j
            End If
        Next n
        Erase arr
    End If
Next wsh
Sheets(1).Rows(1).Copy
Range("a1").PasteSpecial
End Sub
这样代码可能更简便些

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2013-7-19 18:13 | 显示全部楼层
zhaogang1960 发表于 2013-7-18 23:59
如果条件是文本,则用单引号括起来
如果条件是日期,则用单#号括起来

版主,如果不只是提取单个工作簿,而是提取某个文件夹内的所有工作簿的数据呢?

提取.rar

124.2 KB, 下载次数: 9

TA的精华主题

TA的得分主题

发表于 2013-7-19 18:43 | 显示全部楼层
张雄友 发表于 2013-7-19 18:13
版主,如果不只是提取单个工作簿,而是提取某个文件夹内的所有工作簿的数据呢?
  1. Sub Macro1()
  2.     Dim cnn As Object, rs As Object, cat As Object, tb1 As Object
  3.     Dim SQL$, MyFile$, s$, m&, n&, t$, i%
  4.     Application.ScreenUpdating = False
  5.     Set cnn = CreateObject("ADODB.Connection")
  6.     Set cat = CreateObject("ADOX.Catalog")
  7.     Cells.ClearContents
  8.     MyPath = ThisWorkbook.Path & "\分表"
  9.     MyFile = Dir(MyPath & "*.xls")
  10.     Do While MyFile <> ""
  11.         If MyFile <> ThisWorkbook.Name Then
  12.             n = n + 1
  13.             If n = 1 Then
  14.                 cnn.Open "Provider=Microsoft.jet.OLEDB.4.0;Extended Properties=Excel 8.0;Data Source=" & MyPath & MyFile
  15.             Else
  16.                 t = "[Excel 8.0;Database=" & MyPath & MyFile & "]."
  17.             End If
  18.             cat.ActiveConnection = "Provider=Microsoft.jet.OLEDB.4.0;Extended Properties=Excel 8.0;Data Source=" & MyPath & MyFile
  19.             For Each tb1 In cat.Tables
  20.                 If tb1.Type = "TABLE" Then
  21.                     s = Replace(tb1.Name, "'", "")
  22.                     If Right(s, 1) = "$" Then
  23.                         If n = 1 Then
  24.                             Set rs = cnn.Execute("[" & s & "]")
  25.                             For i = 1 To rs.Fields.Count
  26.                                 Cells(1, i) = rs.Fields(i - 1).Name
  27.                             Next
  28.                         End If
  29.                         m = m + 1
  30.                         If m > 49 Then
  31.                             Range("a" & Rows.Count).End(xlUp).Offset(1).CopyFromRecordset cnn.Execute(SQL)
  32.                             m = 1
  33.                             SQL = ""
  34.                         End If
  35.                         If Len(SQL) Then SQL = SQL & " union all "
  36.                         SQL = SQL & "select * from [" & s & "] where 代码='Q09'"
  37.                     End If
  38.                 End If
  39.             Next
  40.         End If
  41.         MyFile = Dir()
  42.     Loop
  43.     If Len(SQL) Then Range("a" & Rows.Count).End(xlUp).Offset(1).CopyFromRecordset cnn.Execute(SQL)
  44.     cnn.Close
  45.     Set cnn = Nothing
  46.     Set cat = Nothing
  47.     Set tb1 = Nothing
  48.     Application.ScreenUpdating = True
  49. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2013-7-19 18:45 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
请看附件
提取.rar (132.36 KB, 下载次数: 18)

TA的精华主题

TA的得分主题

 楼主| 发表于 2013-7-19 18:50 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
zhaogang1960 发表于 2013-7-19 18:43

打开文件夹能用 FileDialog(msoFileDialogFolderPicker) 对话框形式吗?

TA的精华主题

TA的得分主题

发表于 2013-7-19 18:53 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
张雄友 发表于 2013-7-19 18:50
打开文件夹能用 FileDialog(msoFileDialogFolderPicker) 对话框形式吗?


  1. Sub Macro1()
  2.     Dim cnn As Object, rs As Object, cat As Object, tb1 As Object
  3.     Dim SQL$, MyFile$, s$, m&, n&, t$, i%
  4.     With Application.FileDialog(msoFileDialogFolderPicker)
  5.         .InitialFileName = ThisWorkbook.Path & ""
  6.         If .Show = False Then Exit Sub
  7.         MyPath = .SelectedItems(1) & ""
  8.     End With
  9.     Application.ScreenUpdating = False
  10.     Set cnn = CreateObject("ADODB.Connection")
  11.     Set cat = CreateObject("ADOX.Catalog")
  12.     Cells.ClearContents
  13.     MyFile = Dir(MyPath & "*.xls")
  14.     Do While MyFile <> ""
  15.         If MyFile <> ThisWorkbook.Name Then
  16.             n = n + 1
  17.             If n = 1 Then
  18.                 cnn.Open "Provider=Microsoft.jet.OLEDB.4.0;Extended Properties=Excel 8.0;Data Source=" & MyPath & MyFile
  19.             Else
  20.                 t = "[Excel 8.0;Database=" & MyPath & MyFile & "]."
  21.             End If
  22.             cat.ActiveConnection = "Provider=Microsoft.jet.OLEDB.4.0;Extended Properties=Excel 8.0;Data Source=" & MyPath & MyFile
  23.             For Each tb1 In cat.Tables
  24.                 If tb1.Type = "TABLE" Then
  25.                     s = Replace(tb1.Name, "'", "")
  26.                     If Right(s, 1) = "$" Then
  27.                         If n = 1 Then
  28.                             Set rs = cnn.Execute("[" & s & "]")
  29.                             For i = 1 To rs.Fields.Count
  30.                                 Cells(1, i) = rs.Fields(i - 1).Name
  31.                             Next
  32.                         End If
  33.                         m = m + 1
  34.                         If m > 49 Then
  35.                             Range("a" & Rows.Count).End(xlUp).Offset(1).CopyFromRecordset cnn.Execute(SQL)
  36.                             m = 1
  37.                             SQL = ""
  38.                         End If
  39.                         If Len(SQL) Then SQL = SQL & " union all "
  40.                         SQL = SQL & "select * from [" & s & "] where 代码='Q09'"
  41.                     End If
  42.                 End If
  43.             Next
  44.         End If
  45.         MyFile = Dir()
  46.     Loop
  47.     If Len(SQL) Then Range("a" & Rows.Count).End(xlUp).Offset(1).CopyFromRecordset cnn.Execute(SQL)
  48.     cnn.Close
  49.     Set cnn = Nothing
  50.     Set cat = Nothing
  51.     Set tb1 = Nothing
  52.     Application.ScreenUpdating = True
  53. End Sub

复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-16 08:06 , Processed in 0.024826 second(s), 7 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表