ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 两表比对

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-6-29 09:44 | 显示全部楼层 |阅读模式
各位老师,工作簿中有sheet1和sheet2两个表,结构和数据基本一致但不完全一致。想对比两表找出不一致的位置。

以D列作为匹配列来匹配两表,D列相同的,则从sheet1中的A列到最后一列,和sheet2进行比对,比对出不同的内容用黄色显示单元格。
谢谢老师。


sheet1.png
sheet2.png

比对结果效果

比对结果效果

两表比对.zip

7.67 KB, 下载次数: 10

TA的精华主题

TA的得分主题

发表于 2024-6-29 10:08 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
参与一下,供参考。。。
image.png
image.png

两表比对.zip

16.54 KB, 下载次数: 17

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-6-29 10:08 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
代码如下。。。
Sub test()
    Application.ScreenUpdating = False
    brr = Sheet1.[a1].CurrentRegion
    Sheet1.[a1].CurrentRegion.Interior.ColorIndex = 0
    Set d = CreateObject("scripting.dictionary")
    arr = Sheet2.[a1].CurrentRegion
    m = Application.Max(UBound(arr, 2), UBound(brr, 2))
    For i = 1 To UBound(arr)
        If Not d.exists(arr(i, 4)) Then d(arr(i, 4)) = i
    Next
    For i = 1 To UBound(brr)
        If d.exists(brr(i, 4)) Then
            For j = 1 To m
                If j <= UBound(arr, 2) Then
                    If brr(i, j) <> arr(d(brr(i, 4)), j) Then Sheet1.Cells(i, j).Interior.Color = vbYellow
                Else
                    Sheet1.Cells(i, j).Interior.Color = vbYellow
                End If
            Next
        Else
            Sheet1.Cells(i, 1).Resize(, m).Interior.Color = vbYellow
        End If
    Next
    Set d = Nothing
    Application.ScreenUpdating = True
    Beep
End Sub

TA的精华主题

TA的得分主题

发表于 2024-6-29 10:16 | 显示全部楼层
Sub 数据比对()
Dim ar As Variant, br As Variant
Dim rn As Range
Dim d As Object
Set d = CreateObject("scripting.dictionary")
ar = Sheet2.[a1].CurrentRegion
For i = 1 To UBound(ar)
    If ar(i, 4) <> "" Then
        d(ar(i, 4)) = i
    End If
Next i
With Sheet1
    .[a1].CurrentRegion.Interior.ColorIndex = 0
    br = .[a1].CurrentRegion
    For i = 1 To UBound(br)
        If br(i, 4) <> "" Then
            If Not d.exists(br(i, 4)) Then
                If rn Is Nothing Then
                    Set rn = .Cells(i, 1).Resize(1, 6)
                Else
                    Set rn = Union(rn, .Cells(i, 1).Resize(1, 6))
                End If
            Else
                xh = d(br(i, 4))
                For j = 1 To UBound(br, 2)
                    If j <= UBound(ar, 2) Then
                        If br(i, j) <> ar(xh, j) Then
                            If rn Is Nothing Then
                                Set rn = .Cells(i, j)
                            Else
                                Set rn = Union(rn, .Cells(i, j))
                            End If
                        Else
                            If rn Is Nothing Then
                                Set rn = .Cells(i, 6)
                            Else
                                Set rn = Union(rn, .Cells(i, 6))
                            End If
                        End If
                    End If
                Next j
            End If
        End If
    Next i
    If Not rn Is Nothing Then rn.Interior.ColorIndex = 6
End With
MsgBox "ok!"
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-6-29 10:17 | 显示全部楼层
两表比对.rar (15.79 KB, 下载次数: 11)

TA的精华主题

TA的得分主题

发表于 2024-6-29 12:33 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-6-29 12:34 | 显示全部楼层

Sub 根据标准表标出对比表的不同数据()
    Dim arr, brr, crr
    Dim i, j
    Dim rng As Range
    arr = ActiveWorkbook.Sheets("标准表").UsedRange
    brr = ActiveWorkbook.Sheets("对比表").UsedRange
    For i = LBound(arr) To UBound(arr)
        For j = LBound(arr, 2) To UBound(arr, 2)
            If Not arr(i, j) = brr(i, j) Then
                If rng Is Nothing Then
                    Set rng = ActiveWorkbook.Sheets("对比表").Cells(i, j)
                Else
                    Set rng = Union(Cells(i, j), rng)
                End If
            End If
        Next
    Next i
    rng.Interior.ColorIndex = 6
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-29 21:12 | 显示全部楼层
quqiyuan 发表于 2024-6-29 10:08
代码如下。。。
Sub test()
    Application.ScreenUpdating = False

这个代码很完美
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-17 21:38 , Processed in 0.040230 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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