ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

求助:将人员信息表提取出离职、入职。。信息

[复制链接]

TA的精华主题

TA的得分主题

发表于 2015-9-9 22:37 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
如何在黄色栏里用vlookup或其他函数公式从“人员信息表”中
提取出分类信息







谢谢

HR.rar

13.88 KB, 下载次数: 100

人员信息表

TA的精华主题

TA的得分主题

发表于 2015-9-9 23:31 | 显示全部楼层
B25单元格输入如下数组公式,下拉右拉:
  1. =INDEX(人员信息表!$A:$K,SMALL(IF(人员信息表!$K$3:$K$50=$A$24,ROW($3:$50),4^8),$A25),MATCH(B$24,人员信息表!$A$2:$K$2,))
复制代码

注意统一标题行内容和人员信息表!$A$2:$K$2匹配,否则公式中INDEX的最后一个参数需手工输入数字如4表示返回人员信息表!$A:$K中第4列的内容即姓名列。

TA的精华主题

TA的得分主题

发表于 2015-9-11 09:26 | 显示全部楼层
看下这个可以让你一劳永逸地解决问题,5分钟制作自己的档案管理系统,不会编程也疯狂http://club.excelhome.net/thread-778395-1-1.html[/url]

TA的精华主题

TA的得分主题

发表于 2015-9-11 23:29 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
  1. Sub 人员信息导出()
  2.     Dim sht, sht1 As Worksheet, i, n, m, x, y, z As Integer
  3.     Set sht = ThisWorkbook.Worksheets(1)
  4.     Set sht1 = ThisWorkbook.Worksheets(2)
  5.     For i = 3 To sht1.Cells(Rows.Count, 11).End(xlUp).Row
  6.         For n = 24 To sht.Cells(Rows.Count, 1).End(xlUp).Row
  7.             If sht.Cells(n, 1).Value = sht1.Cells(i, 11).Value Then
  8.                 Select Case sht.Cells(n, 1).Value
  9.                     Case Is = "入职人员"
  10.                     m = m + 1
  11.                     sht.Cells(n + m, 2).Value = sht1.Cells(i, 4).Value
  12.                     sht.Cells(n + m, 3).Value = sht1.Cells(i, 5).Value
  13.                     sht.Cells(n + m, 4).Value = sht1.Cells(i, 3).Value
  14.                     sht.Cells(n + m, 5).Value = sht1.Cells(i, 10).Value
  15.                     sht.Cells(n + m, 6).Value = sht1.Cells(i, 9).Value
  16.                     Case Is = "离职人员"
  17.                     x = x + 1
  18.                     sht.Cells(n + x, 2).Value = sht1.Cells(i, 4).Value
  19.                     sht.Cells(n + x, 3).Value = sht1.Cells(i, 5).Value
  20.                     sht.Cells(n + x, 4).Value = sht1.Cells(i, 3).Value
  21.                     sht.Cells(n + x, 5).Value = sht1.Cells(i, 10).Value
  22.                     sht.Cells(n + x, 6).Value = sht1.Cells(i, 9).Value
  23.                     Case Is = "调入人员"
  24.                     y = y + 1
  25.                     sht.Cells(n + y, 2).Value = sht1.Cells(i, 4).Value
  26.                     sht.Cells(n + y, 3).Value = sht1.Cells(i, 5).Value
  27.                     sht.Cells(n + y, 4).Value = sht1.Cells(i, 3).Value
  28.                     sht.Cells(n + y, 5).Value = sht1.Cells(i, 10).Value
  29.                     sht.Cells(n + y, 6).Value = sht1.Cells(i, 9).Value
  30.                     Case Is = "调出人员"
  31.                     z = z + 1
  32.                     sht.Cells(n + z, 2).Value = sht1.Cells(i, 4).Value
  33.                     sht.Cells(n + z, 3).Value = sht1.Cells(i, 5).Value
  34.                     sht.Cells(n + z, 4).Value = sht1.Cells(i, 3).Value
  35.                     sht.Cells(n + z, 5).Value = sht1.Cells(i, 10).Value
  36.                     sht.Cells(n + z, 6).Value = sht1.Cells(i, 9).Value
  37.                 End Select
  38.             End If
  39.         Next
  40.     Next
  41. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2016-2-19 17:32 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-22 23:40 , Processed in 0.034436 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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