如何在Excel中通过VBA快速查找多列重复的值(vba查询excel重复值)

如何在Excel中通过VBA快速查找多列重复的值(vba查询excel重复值)

首页维修大全综合更新时间:2024-01-21 04:05:20

如何在Excel中通过VBA快速查找多列重复的值

VBA查找重复值一般使用字典对象,例子代码:;

set db = createobject("scripting.dictionary")arr = range("a1:d10") '需要检查的区域for i=1 to ubound(arr) for j=1 to ubound(arr,2) if db.exists(arr(i,j)

) then msgbox "发现重复值:" & arr(i,j) else db(arr(i,j)) = true end if next jnext i

大家还看了
也许喜欢
更多栏目

© 2021 3dmxku.com,All Rights Reserved.