ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[分享] 【自定义函数】多条件查询VLOOKUPIFS

[复制链接]

TA的精华主题

TA的得分主题

发表于 2015-7-25 08:59 | 显示全部楼层
拿出来看看

TA的精华主题

TA的得分主题

发表于 2015-7-27 12:19 | 显示全部楼层
Function VLOOKUPIFS(ReturnRange As Range, ParamArray Param() As Variant)
   
    Dim ParamCnt, IfRngCnt, FindCnt, MinCnt, MinIndex As Long
    Dim beginRow, FindRow, MatchRow, YCnt As Long
    Dim IfRng As Range
    Dim IfVal As String
    Dim temp0, temp1
   
    MinCnt = 1048576                        'excel2013最大行数
    ParamCnt = UBound(Param)
    IfRngCnt = (ParamCnt + 1) / 2
   
    For i = 0 To IfRngCnt - 1
        Set IfRng = Param(2 * i)
        IfVal = Param(2 * i + 1)

        FindCnt = Application.CountIf(IfRng, IfVal)
        If FindCnt < MinCnt Then
            MinCnt = FindCnt
            MinIndex = 2 * i
        End If
        
        Set IfRng = Nothing
    Next i
   
    Set IfRng = Param(MinIndex)
    IfVal = Param(MinIndex + 1)
   
    FindRow = 0
    beginRow = 1
    YCnt = 0
   
    If IfVal Like ">*" Or IfVal Like "<*" Or IfVal Like "<>*" Then
   
            For i = 1 To MinCnt
                    For m = beginRow To IfRng.Rows.Count
                            beginRow = m + 1
                           
                            temp0 = IfRng.Cells(m, 1).Value
                            temp1 = IfVal
                           
                            If IsNumeric(temp0) Then
                                If temp1 Like ">*" And Not (temp1 Like "*=*") And temp0 > Replace(temp1, ">", "") Then
                                    MatchRow = m
                                    Exit For
                                ElseIf temp1 Like ">=*" And temp0 >= Replace(temp1, ">=", "") Then
                                    MatchRow = m
                                    Exit For
                                ElseIf temp1 Like "<*" And Not (temp1 Like "*=*") And temp0 < Replace(temp1, "<", "") Then
                                    MatchRow = m
                                    Exit For
                                ElseIf temp1 Like "<=*" And temp0 <= Replace(temp1, "<=", "") Then
                                    MatchRow = m
                                    Exit For
                                End If
                            End If
                                
                            If temp1 Like "<>*" And temp0 <> Replace(temp1, "<>", "") Then
                                MatchRow = m
                                Exit For
                            End If
                    Next m

                    YCnt = 0
                    For j = 0 To IfRngCnt - 1
                            temp0 = Param(2 * j).Cells(MatchRow, 1).Value
                            temp1 = Param(2 * j + 1)
                        
                            If temp1 Like ">*" And Not (temp1 Like "*=*") And temp0 > Replace(temp1, ">", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp1 Like ">=*" And temp0 >= Replace(temp1, ">=", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp1 Like "<*" And Not (temp1 Like "*=*") And temp0 < Replace(temp1, "<", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp1 Like "<=*" And temp0 <= Replace(temp1, "<=", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp1 Like "<>*" And temp0 <> Replace(temp1, "<>", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp0 = temp1 Then
                                YCnt = YCnt + 1
                            Else
                                Exit For
                            End If
                    Next j
                    
                    If YCnt = IfRngCnt Then
                        Exit For
                    End If
            Next i

    Else
            For i = 1 To MinCnt
                    FindRow = Application.Match(IfVal, IfRng.Range(Cells(beginRow, 1), Cells(IfRng.Rows.Count, 1)), 0)
                    MatchRow = beginRow + FindRow - 1
                    beginRow = MatchRow + 1
                    
                    YCnt = 0
                    For j = 0 To IfRngCnt - 1
                            temp0 = Param(2 * j).Cells(MatchRow, 1).Value
                            temp1 = Param(2 * j + 1)
                        
                            If temp1 Like ">*" And Not (temp1 Like "*=*") And temp0 > Replace(temp1, ">", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp1 Like ">=*" And temp0 >= Replace(temp1, ">=", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp1 Like "<*" And Not (temp1 Like "*=*") And temp0 < Replace(temp1, "<", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp1 Like "<=*" And temp0 <= Replace(temp1, "<=", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp1 Like "<>*" And temp0 <> Replace(temp1, "<>", "") Then
                                YCnt = YCnt + 1
                            ElseIf temp0 = temp1 Then
                                YCnt = YCnt + 1
                            Else
                                Exit For
                            End If
                    Next j
                    
                    If YCnt = IfRngCnt Then
                        Exit For
                    End If
            Next i
        
    End If
         
    If YCnt = IfRngCnt Then
        VLOOKUPIFS = ReturnRange.Cells(MatchRow, 1).Value
    Else
        VLOOKUPIFS = CVErr(xlErrValue)    '返回一个错误值
    End If

End Function




我参照楼主的代码做了算法上的修正,效率应该很高的,让大家测试一下。。不过有一个问题,在跨sheet使用时,如果条件有空白的会出来错误错,但在同一个sheet使用时是正确的,不知道怎么回事,看谁能找出问题来!

TA的精华主题

TA的得分主题

发表于 2023-6-15 13:56 | 显示全部楼层
群文件或百度搜索“微软函数 for vba”,加载后你就有微软工程师(GG)的函数了
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-16 13:45 , Processed in 0.025805 second(s), 7 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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