ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 用公式或VB将两个表不重复数据提取到第三个表

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-3-14 15:24 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
从(上版)和(新版)两个表中把不重复的数据   整行提取到(提取不重复项)的表中

分单表.rar

288.61 KB, 下载次数: 7

TA的精华主题

TA的得分主题

发表于 2024-3-14 15:31 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
以哪列数据作为不重复的标准?

TA的精华主题

TA的得分主题

发表于 2024-3-14 15:33 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-3-14 16:02 | 显示全部楼层
是只提取(新版)表中与(上版)不重复的数据提取到(提取不重复项)表中

TA的精华主题

TA的得分主题

发表于 2024-3-14 16:05 | 显示全部楼层
我的办公电脑有加密,所以贴个代码
Sub 提取不重复项()
    '
    ' 问题来源:https://club.excelhome.net/thread-1686963-1-1.html
    '
    ' 需求:从上版和新版二表中提取不重复项到新表上
    '
    ' 时间:2024-3-14
   
    Sheet4.Select
    Rows("2:20000").Select
    Selection.Delete Shift:=xlUp
    Range("A1").Select
   
    x2 = 2
    Do While Not (IsEmpty(Sheet2.Cells(x2, 5).Value))
      x4 = 2
      foun = False
      Do While Not (IsEmpty(Sheet4.Cells(x4, 5).Value))
        If Sheet4.Cells(x4, 5).Value = Sheet2.Cells(x2, 5).Value Then
          foun = True
        End If
        x4 = x4 + 1
      Loop
      If foun = False Then
        For y = 1 To 10
          Sheet4.Cells(x4, y).Value = Sheet2.Cells(x2, y).Value
        Next y
      End If
      x2 = x2 + 1
    Loop
    '-----
    x3 = 2
    Do While Not (IsEmpty(Sheet3.Cells(x3, 5).Value))
      x4 = 2
      foun = False
      Do While Not (IsEmpty(Sheet4.Cells(x4, 5).Value))
        If Sheet4.Cells(x4, 5).Value = Sheet3.Cells(x3, 5).Value Then
          foun = True
        End If
        x4 = x4 + 1
      Loop
      If foun = False Then
        For y = 1 To 10
          Sheet4.Cells(x4, y).Value = Sheet3.Cells(x3, y).Value
        Next y
      End If
      x3 = x3 + 2
    Loop
   
End Sub

TA的精华主题

TA的得分主题

发表于 2024-3-14 16:12 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-3-14 20:03 | 显示全部楼层
Option Explicit
Sub TEST6()
    Dim ar, i&, j&, dic As Object, strJoin$, vKey
   
    Application.ScreenUpdating = False
    Set dic = CreateObject("Scripting.Dictionary")
   
    With Sheets(2).[A1].CurrentRegion
        ar = .Value
        For i = 2 To UBound(ar)
            strJoin = ""
            For j = 1 To UBound(ar, 2)
                strJoin = strJoin & "," & CStr(ar(i, j))
            Next j
            dic(strJoin) = .Rows(i)
        Next i
    End With
    With Sheets(3).[A1].CurrentRegion
        ar = .Value
        For i = 2 To UBound(ar)
            strJoin = ""
            For j = 1 To UBound(ar, 2)
                strJoin = strJoin & "," & CStr(ar(i, j))
            Next j
            If dic.exists(strJoin) Then
                dic.Remove strJoin
            Else
                dic(strJoin) = .Rows(i)
            End If
        Next i
    End With
   
    With Sheets(4)
        .[A1].CurrentRegion.Offset(1).ClearContents
        .[A2].Resize(dic.Count, UBound(ar, 2)) = Application.Rept(dic.items, 1)
        .Activate
    End With
   
    Set dic = Nothing
    Application.ScreenUpdating = True
    Beep
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-3-14 20:03 | 显示全部楼层
请参考。。。

分单表.rar

377.81 KB, 下载次数: 21

TA的精华主题

TA的得分主题

发表于 2024-3-14 22:33 | 显示全部楼层
参与一下。。。

分单表.7z

370.17 KB, 下载次数: 15

TA的精华主题

TA的得分主题

发表于 2024-3-14 22:34 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
参与一下。。。
  1. Sub ykcbf()   '//2024.3.14
  2.     Dim arr, d
  3.     Application.ScreenUpdating = False
  4.     Set d = CreateObject("Scripting.Dictionary")
  5.     For Each Sht In Sheets
  6.         If InStr(Sht.Name, "版") Then
  7.             With Sht
  8.                 r = .Cells(.Rows.Count, 5).End(xlUp).Row
  9.                 arr = .[a1].Resize(r, 9)
  10.             End With
  11.             For i = 2 To UBound(arr)
  12.                 s = arr(i, 5)
  13.                 d(s) = d(s) + 1
  14.             Next
  15.         End If
  16.     Next
  17.     ReDim brr(1 To UBound(arr), 1 To UBound(arr, 2))
  18.     For Each Sht In Sheets
  19.         If InStr(Sht.Name, "版") Then
  20.             With Sht
  21.                 r = .Cells(.Rows.Count, 5).End(xlUp).Row
  22.                 arr = .[a1].Resize(r, 9)
  23.             End With
  24.             For i = 2 To UBound(arr)
  25.                 s = arr(i, 5)
  26.                 If d(s) = 1 Then
  27.                     m = m + 1
  28.                     For j = 1 To UBound(arr, 2)
  29.                         brr(m, j) = arr(i, j)
  30.                     Next
  31.                 End If
  32.             Next
  33.         End If
  34.     Next
  35.     With Sheets("提取不重复项")
  36.         .UsedRange.Offset(1).ClearContents
  37.         .[a2].Resize(m, UBound(arr, 2)) = brr
  38.     End With
  39.     Set d = Nothing
  40.     Application.ScreenUpdating = True
  41.     MsgBox "OK!"
  42. End Sub
复制代码


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

本版积分规则

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

GMT+8, 2024-11-18 03:50 , Processed in 0.055556 second(s), 15 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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