ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[原创] VBA 2个数组之间的补集

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-10-19 20:45 | 显示全部楼层 |阅读模式
本帖最后由 wps6129 于 2024-10-19 20:48 编辑

VBA 2个数组之间的补集(差集)

在使用VBA 的时候, 需要求出 新, 旧 两个集合的补集, 也就是新集合中不同于旧集合的地方。
比较完成后,结果返回到Comparison_Array()数组里。


  1. Function ListComplement(Array_A, new_Array)

  2. Dim i As Integer
  3. Dim rn As Integer: rn = Range("A65536").End(xlUp).Row   '
  4. Dim Comp_str As String
  5. Dim Comp_arr

  6. If (Not IsEmpty(Array_A)) Then                      '当A 为 非空的时候

  7.     If (Not IsEmpty(new_Array)) Then                    '当new 为 非空的时候
  8.    
  9.         For i = 1 To UBound(new_Array)

  10.             If IsError(Application.Match(new_Name(i), Array_A, 0)) = True Then    ' 在A 数组里, 寻找new(i)是否存在
  11.    
  12.                 Comp_str = Comp_str & new_Name(i) & ","
  13.    
  14.             End If
  15.    
  16.         Next
  17.                 If Len(Comp_str) >= 1 Then
  18.                     Comp_arr = Left(Comp_str, Len(Comp_str) - 1)
  19.                     Comp_arr = Split(Comp_arr, ",")                   'Split() 生成的数组,index从0 开始
  20.                     Comp_str = ""                                      
  21.                     Range("B" & rn + 1).Resize(UBound(Comp_arr) - LBound(Comp_arr) + 1, 1) = Application.WorksheetFunction.Transpose(Comp_arr)
  22.                 Else
  23.                     MsgBox "added Documents are already in the list"
  24.                 End If
  25.     Else
  26.         If IsEmpty(new_Array) Then                '当new 为 空的时候
  27.             
  28.                 Exit Function
  29.         End If
  30.         
  31.     End If

  32. Else                                             '当A 为 空的时候

  33.     If (Not IsEmpty(new_Array)) Then              '当new 为 非空的时候
  34.             Comp_arr = new_Array
  35.             Range("B" & rn + 1).Resize(UBound(Comp_arr) - LBound(Comp_arr) + 1, 1) = Application.WorksheetFunction.Transpose(Comp_arr)

  36.     Else: Exit Function
  37.     End If
  38.             
  39. End If

  40. End Function
复制代码



评分

1

查看全部评分

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

本版积分规则

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

GMT+8, 2024-11-19 11:18 , Processed in 0.024828 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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