ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 排名,请求高手帮忙谢谢!

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-7-18 08:59 | 显示全部楼层 |阅读模式
老是用排序汇总不方便,能用VBA解决这个统计最好不过,多谢帮忙!

排名.rar

12.5 KB, 下载次数: 4

TA的精华主题

TA的得分主题

发表于 2018-7-18 09:10 | 显示全部楼层
  1. Sub 按钮1_Click()
  2.     Set d = CreateObject("scripting.dictionary")
  3.     Application.ScreenUpdating = False
  4.     Range([w3], Cells(Rows.Count, "aa").End(3)).Offset(1).ClearContents
  5.     For j = 4 To Cells(Rows.Count, "h").End(3).Row
  6.         If Not d.exists(Cells(j, 8).Value & "") Then
  7.             Set d(Cells(j, 8).Value & "") = Cells(j, "e").Resize(1, 5)
  8.         Else
  9.             Set d(Cells(j, 8).Value & "") = Union(d(Cells(j, 8).Value & ""), Cells(j, "e").Resize(1, 5))
  10.         End If
  11.     Next j

  12.     For Each rn In Array("3", "4", "9", "2")
  13.         If d.exists(rn) Then
  14.             d(rn).Copy Cells(Rows.Count, "w").End(3).Offset(1)
  15.         End If
  16.     Next
  17.     Application.ScreenUpdating = True
  18. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2018-7-18 09:11 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
附件内容供参考。。。。。。

排名.zip

21.94 KB, 下载次数: 6

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-18 10:23 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
liulang0808 发表于 2018-7-18 09:11
附件内容供参考。。。。。。

先谢谢老师好快,只是不好意思我把条件写错了应该是相同工号越多越往前排(别的没变化)。

相同越多越往前靠.rar

22.51 KB, 下载次数: 7

TA的精华主题

TA的得分主题

发表于 2018-7-18 10:34 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
  1. Sub 按钮1_Click()
  2.     Set d = CreateObject("scripting.dictionary")
  3.     Set dn = CreateObject("scripting.dictionary")
  4.     Application.ScreenUpdating = False
  5.     Range([w3], Cells(Rows.Count, "aa").End(3)).Offset(1).ClearContents
  6.     For Each rn In Array("3", "4", "9", "2")
  7.         dn(rn) = 0
  8.     Next
  9.    
  10.     For j = 4 To Cells(Rows.Count, "h").End(3).Row
  11.         If dn.exists(Cells(j, 8).Value & "") Then
  12.             If Not d.exists(Cells(j, 8).Value & "") Then
  13.                 Set d(Cells(j, 8).Value & "") = Cells(j, "e").Resize(1, 5)
  14.             Else
  15.                 Set d(Cells(j, 8).Value & "") = Union(d(Cells(j, 8).Value & ""), Cells(j, "e").Resize(1, 5))
  16.             End If
  17.             dn(Cells(j, 8).Value & "") = dn(Cells(j, 8).Value & "") + 1
  18.         End If
  19.     Next j
  20. l1:
  21.     If dn.Count <> 0 Then
  22.         mx = WorksheetFunction.Large(dn.items, 1)
  23.         For j = 0 To d.Count - 1
  24.             If dn.items()(j) = mx Then
  25.                 rn = dn.keys()(j)
  26.                 If d.exists(rn) Then
  27.                     d(rn).Copy Cells(Rows.Count, "w").End(3).Offset(1)
  28.                 End If
  29.                 dn.Remove rn
  30.                 Exit For
  31.             End If
  32.         Next
  33.         GoTo l1
  34.     End If

  35.     Application.ScreenUpdating = True
  36. End Sub
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-7-18 10:34 | 显示全部楼层
附件内容供参考。。。。。。

相同越多越往前靠.zip

23.36 KB, 下载次数: 12

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-18 12:47 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
liulang0808 发表于 2018-7-18 10:34
附件内容供参考。。。。。。

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

本版积分规则

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

GMT+8, 2025-1-10 02:23 , Processed in 0.028523 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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