1234

ExcelHome技术论坛

用户名  找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[已解决] 数据用VLOOKUP 公式 数据比较多在输入数据时 经常显示正在计算 ,有更好的方法吗

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2025-3-29 14:03 | 显示全部楼层
满坛皆为吾师 发表于 2025-3-29 11:50
你的VLOOKUP公式改一下,D5输入公式,右拉下拉

感谢  帮助

TA的精华主题

TA的得分主题

发表于 2025-3-29 14:17 | 显示全部楼层
=FILTER(物料编号!$B$5:$F$9,物料编号!$B$5:$B$9=进货!B5,"")

TA的精华主题

TA的得分主题

发表于 2025-3-29 16:18 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2025-3-29 17:31 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2025-3-29 18:56 | 显示全部楼层
升级版本 是最有效的;

微软 在2021版以后,大幅度升级了对老函数的运算效率的

TA的精华主题

TA的得分主题

发表于 2025-3-29 22:44 来自手机 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2025-3-30 20:46 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
用高版本的应该还是不多,vlookup函数的缺点还是很明显。我就自定义了函数ivlookup。
参数有:inText:单元格,inRng1:查找列,inRng2:显示列,x=0精确多值查找,x=1模糊多值查找。
代码如下:
Function iVlookup(inText As String, inRng1 As Range, inRng2 As Range, x As Byte) As String
iVlookup = ""
arr1 = inRng1.Value
arr2 = inRng2.Value
If UBound(arr1) <> UBound(arr2) Or UBound(arr1, 2) <> UBound(arr2, 2) Then Exit Function

If x = 0 Then
  For i = 1 To UBound(arr1)
    If arr1(i, 1) = inText Then
      iVlookup = iVlookup & arr2(i, 1) & ","
    End If
  Next
  iVlookup = Left(iVlookup, Len(iVlookup) - 1)
End If

If x = 1 Then
  For i = 1 To UBound(arr1)
    If InStr(arr1(i, 1), inText) > 0 Then
      iVlookup = iVlookup & "{" & arr1(i, 1) & "," & arr2(i, 1) & "};"
    End If
  Next
  iVlookup = Left(iVlookup, Len(iVlookup) - 1)
End If
End Function

TA的精华主题

TA的得分主题

 楼主| 发表于 2025-3-31 08:19 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
henterwu 发表于 2025-3-30 20:46
用高版本的应该还是不多,vlookup函数的缺点还是很明显。我就自定义了函数ivlookup。
参数有:inText:单元 ...

非常 感谢你的 帮助

TA的精华主题

TA的得分主题

发表于 2025-3-31 08:41 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2025-3-31 11:08 | 显示全部楼层
增加了x=2时,查询值模糊反向精确查询。
Function iVlookup(inText As String, inRng1 As Range, inRng2 As Range, x As Byte) As String
iVlookup = ""
arr1 = inRng1.Value
arr2 = inRng2.Value
If UBound(arr1) <> UBound(arr2) Or UBound(arr1, 2) <> UBound(arr2, 2) Then Exit Function

If x = 0 Then
  For i = 1 To UBound(arr1)
    If arr1(i, 1) = inText Then
      iVlookup = iVlookup & arr2(i, 1) & ","
    End If
  Next
  iVlookup = Left(iVlookup, Len(iVlookup) - 1)
End If

If x = 1 Then
  For i = 1 To UBound(arr1)
    If InStr(arr1(i, 1), inText) > 0 Then
      iVlookup = iVlookup & "{" & arr1(i, 1) & "," & arr2(i, 1) & "};"
    End If
  Next
  iVlookup = Left(iVlookup, Len(iVlookup) - 1)
End If

If x = 2 Then
  For i = 1 To UBound(arr1)
    If InStr(inText, arr1(i, 1)) > 0 Then
      iVlookup = iVlookup & "{" & arr1(i, 1) & "," & arr2(i, 1) & "};"
    End If
  Next
  iVlookup = Left(iVlookup, Len(iVlookup) - 1)
End If

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

本版积分规则

1234

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

GMT+8, 2025-4-4 03:28 , Processed in 0.024095 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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