ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 信息表合并

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-10-25 23:35 | 显示全部楼层 |阅读模式
老师 ,辛苦你一下,帮我编写代码,谢谢!

信息合并.zip (53.22 KB, 下载次数: 20)

TA的精华主题

TA的得分主题

发表于 2024-10-26 09:07 | 显示全部楼层
image.png
体力活 ,写了一半写不下去了

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-26 10:37 来自手机 | 显示全部楼层
//select * from consolidateSheet where f01 like '%教育%'  limit 200;
create temp table aa as
select f04,f05 性别,f06 名称 from consolidateSheet where f01 like '%基本%' and f04 not like '姓名' and f04 not like '-';
select * from aa;
create temp table bb as
select f04,f05 原始学历,colIndex[6:9] from consolidateSheet where f01 like '%教育%' and f04 not like '姓名' and f04 not like '-';
select * from bb;
create temp table cc as
select f04,colIndex[6:12]  from consolidateSheet where f01 like '%职称%' and f04 not like '姓名' and f04 not like '-';
select * from cc;
select * from aa left join bb using(f04) left join cc using(f04);
Screenshot_2024-10-26-10-36-11-645_com.microsoft.emmx.jpg

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-26 11:40 | 显示全部楼层
Option Explicit
Sub TEST6()
    Dim ar, br, i&, j&, r&, dic As Object, iPosRow&
    Dim strPath$, strFileName$, wks As Worksheet
   
    Application.ScreenUpdating = False
    Set dic = CreateObject("Scripting.Dictionary")
   
    strPath = ThisWorkbook.Path & "\"
    With [A1].CurrentRegion
        .Offset(5).Clear 'Contents
        ar = .Resize(10 ^ 3).Value
        r = 5
    End With
   
    strFileName = strPath & "教师基本信息.xls"
    If Dir(strFileName) <> "" Then
        With GetObject(strFileName)
            For Each wks In .Worksheets
                br = wks.[A1].CurrentRegion.Value
                For i = 3 To UBound(br)
                    If Len(br(i, 2)) Then
                        r = r + 1
                        For j = 2 To UBound(br, 2)
                            ar(r, j) = br(i, j)
                        Next j
                        dic(br(i, 2)) = r
                        ar(r, 1) = r - 5
                    End If
                Next i
            Next
            .Close False
        End With
    End If
   
    strFileName = strPath & "教师教育信息.xls"
    If Dir(strFileName) <> "" Then
        With GetObject(strFileName)
            For Each wks In .Worksheets
                br = wks.[A1].CurrentRegion.Value
                For i = 4 To UBound(br)
                    If Len(br(i, 2)) Then
                        If Not dic.exists(br(i, 2)) Then
                            r = r + 1
                            ar(r, 1) = r - 5
                            ar(r, 2) = br(i, 2)
                            dic(br(i, 2)) = r
                        End If
                        iPosRow = dic(br(i, 2))
                        For j = 3 To UBound(br, 2)
                            ar(iPosRow, j + 10) = br(i, j)
                        Next j
                    End If
                Next i
            Next
            .Close False
        End With
    End If
   
    strFileName = strPath & "教师职称信息.xls"
    If Dir(strFileName) <> "" Then
        With GetObject(strFileName)
            For Each wks In .Worksheets
                br = wks.[A1].CurrentRegion.Value
                For i = 5 To UBound(br)
                    If Len(br(i, 2)) Then
                        If Not dic.exists(br(i, 2)) Then
                            r = r + 1
                            ar(r, 1) = r - 5
                            ar(r, 2) = br(i, 2)
                            dic(br(i, 2)) = r
                        End If
                        iPosRow = dic(br(i, 2))
                        For j = 5 To UBound(br, 2)
                            ar(iPosRow, j + 16) = br(i, j)
                        Next j
                    End If
                Next i
            Next
            .Close False
        End With
    End If
   
    [A1].Resize(r, UBound(ar, 2)) = ar
    Set dic = Nothing
    Application.ScreenUpdating = True
    Beep
End Sub

评分

2

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-26 11:43 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
请参考。。。

信息合并.rar

57.4 KB, 下载次数: 21

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-10-27 07:31 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 李桥贵 于 2024-10-27 08:47 编辑

老师其中有同名同姓但性别不同,如果每个表中都有身份证号能匹配吗,谢谢。
信息合并(同名同姓).rar (54.6 KB, 下载次数: 5)

TA的精华主题

TA的得分主题

发表于 2024-10-27 08:29 | 显示全部楼层
李桥贵 发表于 2024-10-27 07:31
老师其中有同名同姓但性别不同,如果每个表中都有身份证号能匹配吗,谢谢。

其实用身份证号码最好,能做到唯一性,否则有同名同性会导到匹配错位。

TA的精华主题

TA的得分主题

发表于 2024-10-28 19:48 | 显示全部楼层
李桥贵 发表于 2024-10-27 07:31
老师其中有同名同姓但性别不同,如果每个表中都有身份证号能匹配吗,谢谢。

请参考。。。

信息合并(同名同姓).rar

55.07 KB, 下载次数: 6

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-28 20:40 | 显示全部楼层
参与一下。

信息合并(同名同姓).rar

60.52 KB, 下载次数: 6

评分

1

查看全部评分

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

本版积分规则

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

GMT+8, 2024-11-22 06:44 , Processed in 0.039820 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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