ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 求VBA代码实现遍历整张表然后可以模糊查询

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-8-24 09:17 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
遍历所有内容可以进行模糊查询,谢谢求帮忙

全部遍历.rar

58.59 KB, 下载次数: 47

TA的精华主题

TA的得分主题

发表于 2018-8-24 09:26 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
要求不具体,查询条件是什么?

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-24 11:20 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
lsc900707 发表于 2018-8-24 09:26
要求不具体,查询条件是什么?

整行全部内容随机某列一个数据都可以查到   如:单位 “北京”就需要跳出全部与其相关的内容    如:规格查询“127*27”能找到全部127*27相关的内容
头像被屏蔽

TA的精华主题

TA的得分主题

发表于 2018-8-24 15:26 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2018-8-24 15:41 | 显示全部楼层
  1. Sub 多条件工作表查询()
  2. StartTime = Timer
  3. Application.ScreenUpdating = False
  4. Dim str$, str1$
  5. Dim ran As Range

  6. With ThisWorkbook.Sheets("查询")
  7. Set ran = .Range("A5:j25000")
  8. ran = ""
  9. brr = .Range("A5:j25000")
  10. crr = .Range("A2:j2")
  11. End With

  12.               Arr = Sheets(1).[a1].CurrentRegion
  13.                    For j = 2 To UBound(Arr)
  14.                        For i = 1 To UBound(crr, 2)
  15.                            If crr(1, i) <> "" Then
  16.                                str = str & "*" & UCase(crr(1, i)) & "*"
  17.                                str1 = str1 & Arr(j, i)
  18.                            End If
  19.                        Next i

  20.                          If str1 Like str And str <> "" Then
  21.                              mm = mm + 1
  22.                                For m = 1 To UBound(Arr, 2)
  23.                                   brr(mm, m) = Arr(j, m)
  24.                               Next m
  25.                          End If
  26.                              str1 = ""
  27.                              str = ""
  28.                 Next j
  29. ThisWorkbook.Sheets("查询").Columns("b:z").NumberFormat = "@"
  30. ran = "": ran = brr
  31. TimeOne = Format(Timer - StartTime, "0.00000") & "秒"
  32. Application.ScreenUpdating = True
  33. MsgBox "查询时间:" & TimeOne
  34. End Sub
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-8-24 15:46 | 显示全部楼层
  1. Sub 多条件工作表查询()
  2. StartTime = Timer
  3. Application.ScreenUpdating = False
  4. Dim str$, str1$
  5. Dim ran As Range

  6. With ThisWorkbook.Sheets("查询")
  7. Set ran = .Range("A5:j25000")
  8. ran = ""
  9. brr = .Range("A5:j25000")
  10. crr = .Range("A2:j2")
  11. End With

  12.               Arr = Sheets(1).[a1].CurrentRegion
  13.                    For j = 2 To UBound(Arr)
  14.                        For i = 1 To UBound(crr, 2)
  15.                            If crr(1, i) <> "" Then
  16.                                str = str & "*" & UCase(crr(1, i)) & "*"
  17.                                str1 = str1 & Arr(j, i)
  18.                            End If
  19.                        Next i

  20.                          If str1 Like str And str <> "" Then
  21.                              mm = mm + 1
  22.                                For m = 1 To UBound(Arr, 2)
  23.                                   brr(mm, m) = Arr(j, m)
  24.                               Next m
  25.                          End If
  26.                              str1 = ""
  27.                              str = ""
  28.                 Next j
  29. ThisWorkbook.Sheets("查询").Columns("b:z").NumberFormat = "@"
  30. ran = "": ran = brr
  31. TimeOne = Format(Timer - StartTime, "0.00000") & "秒"
  32. Application.ScreenUpdating = True
  33. MsgBox "查询时间:" & TimeOne
  34. End Sub
复制代码
QQ截图20180824154524.jpg

新建Microsoft Office Excel 2007 工作表.rar

64.4 KB, 下载次数: 68

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-8-24 15:47 | 显示全部楼层
固定列  输入关键字是 普通的查询方法。
不固定列,一个字:懒。(懒人有懒招。)

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-24 15:51 | 显示全部楼层
zopey 发表于 2018-8-24 15:47
固定列  输入关键字是 普通的查询方法。
不固定列,一个字:懒。(懒人有懒招。)

这位老师
见笑了

TA的精华主题

TA的得分主题

发表于 2018-8-24 16:34 | 显示全部楼层
  1. Sub test()
  2.     Dim SH As Worksheet
  3.     Dim lngRows As Long, strFind As String
  4.     Dim rgSource As Range, rgFind As Range, rgResult As Range
  5.     Dim strAddress As String
  6.    
  7.     Set SH = Sheets("Sheet1")
  8.     SH.Cells.EntireRow.Hidden = False
  9.     lngRows = SH.Range("A" & Rows.Count).End(xlUp).Row
  10.     Set rgSource = SH.Range("A2:J" & lngRows)
  11.    
  12.     strFind = Application.InputBox("请输入要查询的内容:", "查询")
  13.    
  14.     If strFind = "False" Or Trim(strFind) = "" Then Exit Sub
  15.    
  16.     strFind = Trim(strFind)
  17.     Set rgFind = rgSource.Find(strFind, LookIn:=xlValues)
  18.    
  19.     If Not rgFind Is Nothing Then
  20.         strAddress = rgFind.Address
  21.         Do
  22.             If rgResult Is Nothing Then Set rgResult = rgFind Else Set rgResult = Union(rgResult, rgFind)
  23.             Set rgFind = rgSource.FindNext(rgFind)
  24.         Loop While Not rgFind Is Nothing And rgFind.Address <> strAddress
  25.         
  26.         rgSource.EntireRow.Hidden = True
  27.         rgResult.EntireRow.Hidden = False
  28.         MsgBox "查询内容为【" & strFind & "】" & vbCrLf & "查找完毕,共找到【" & rgResult.Count & "】条记录!", vbInformation + vbOKOnly
  29.     Else
  30.         MsgBox "查询内容为【" & strFind & "】" & vbCrLf & "查找完毕,没有找到你要的记录!", vbCritical + vbOKOnly
  31.     End If
  32. End Sub
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-8-24 16:52 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
查询条件为空时显示全部

全部遍历.rar

63.17 KB, 下载次数: 89

评分

1

查看全部评分

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

本版积分规则

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

GMT+8, 2025-1-12 18:39 , Processed in 0.027014 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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