ExcelTip.Net留存知识帖 ---【注:附件之前被网盘供应商清空后,现已修复-现已修复-现已修复为本地下载!】
现在位置:首页 > E问E答 > Excel VBA > 如何依条件区的条件设置返回满足条件选号?

如何依条件区的条件设置返回满足条件选号?

作者:绿色风 分类: 时间:2022-08-17 浏览:138
楼主
liuguansky
Q:如何依条件区域的多个条件,在号码的源数据中挑选中符合条件的号码来作为参考?
A:用如下代码可以实现:
全部过滤条件代码:

  1. Sub justtest1()
  2.     Dim arr, dic, arre, i&, j&, k&, str1$
  3.     Set dic = CreateObject("scripting.dictionary")
  4.     Application.ScreenUpdating = False
  5.     Set rng = [d2:h2] '设置条件区域
  6.     If Application.CountA(rng) = 0 Then
  7.         MsgBox "没有相应条件": Exit Sub
  8.         Else: arr = [d2:h2].Value
  9.         arre = Cells(3, 2).CurrentRegion.Value
  10.         For i = 1 To 5
  11.             With Cells(3, 3 + i)
  12.                 If .Offset(1, 0) <> "" Then
  13.                     arr = .Resize(.End(4).Row - 2, 1).Value
  14.                     For j = 1 To UBound(arre, 1)
  15.                         str1 = Mid(arre(j, 1), i, 3)
  16.                         For k = 1 To UBound(arr, 1)
  17.                             If InStr(1, str1, Mid(arr(k, 1), 1, 1)) > 0 And InStr(1, str1, Mid(arr(k, 1), 2, 1)) > 0 Then
  18.                                 If Not dic.exists(arre(j, 1)) Then dic.Add arre(j, 1), "": Exit For
  19.                             End If
  20.                         Next k
  21.                     Next j
  22.                 End If
  23.             End With
  24.         Next i
  25.         If dic.Count = 0 Then
  26.             MsgBox "条件区域下无内容或者找不到满足条件区域的记录"
  27.             Else: Cells(1, "j") = dic.Count & "注"
  28.             Range("j3:j" & Rows.Count).ClearContents
  29.             Cells(3, "j").Resize(dic.Count, 1) = Application.Transpose(dic.keys)
  30.         End If
  31.     End If
  32.     Application.ScreenUpdating = True
  33.     Set dic = Nothing
  34. End Sub
子条件参数过程代码:

  1. Sub justtest(ByVal rng As Range)
  2.     Dim arr, i&, arre, arrt(), str1$, s%, j&, k&
  3.     If rng.Offset(1, 0) = "" Then
  4.         MsgBox "没有相应条件": Exit Sub
  5.         Else: arr = rng.Offset(1, 0).Resize(rng.End(4).Row - 2, 1).Value
  6.         arre = Cells(3, 2).CurrentRegion.Value
  7.         s = CInt(Mid(rng.Value, 1, 1))
  8.         For i = 1 To UBound(arre, 1)
  9.             str1 = Mid(arre(i, 1), s, 3)
  10.             For j = 1 To UBound(arr, 1)
  11.                 If InStr(1, str1, Mid(arr(j, 1), 1, 1)) > 0 And InStr(1, str1, Mid(arr(j, 1), 2, 1)) > 0 Then
  12.                     k = k + 1
  13.                     ReDim Preserve arrt(1 To 1, 1 To k)
  14.                     arrt(1, k) = arre(i, 1): Exit For
  15.                 End If
  16.             Next j
  17.         Next i
  18.         rng.Offset(-1, 7) = k & "注"
  19.         rng.Offset(1, 7).Resize(Rows.Count - 2, 1).ClearContents
  20.         rng.Offset(1, 7).Resize(k, 1) = Application.Transpose(arrt)
  21.     End If
  22. End Sub

各单击事件代码:

  1. Sub test1()
  2.     Call justtest([d2])
  3. End Sub
  4. Sub test2()
  5.     Call justtest([e2])
  6. End Sub
  7. Sub test3()
  8.     Call justtest([f2])
  9. End Sub
  10. Sub test4()
  11.     Call justtest([g2])
  12. End Sub
  13. Sub test5()
  14.     Call justtest([h2])
  15. End Sub
具体示例文件如下:
2楼
海洋之星
好长啊,

免责声明

有感于原ExcelTip.Net留存知识的价值及部分知识具有的时间限定性因素, 经与ExcelTip.Net站长Apolloh商议并征得其同意, 现将原属ExcelTip.Net的知识帖采集资料于本站点进行展示, 供有需要的人士查询使用,也慰缅曾经的论坛时代。 所示各个帖子的原作者如对版权有异议, 可与本人沟通提出,或于本站点留言,我们会尽快处理。 在此,感谢ExcelTip.Net站长Apolloh的支持,感谢本站点所有人**绿色风(QQ:79664738)**的支持与奉献,特此鸣谢!
------本人网名**KevinChengCW(QQ:1210618015)**原ExcelTip.Net总版主之一

评论列表
sitemap