ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 用数组统计分数段内人数

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-2-7 13:29 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 nl054685 于 2024-2-7 13:58 编辑

请各位大老帮助修改一下,需现在的模块是分数段内累计,我的要求是要统计各分数段内的人数,不是累计。谢谢!

附件.rar

29.18 KB, 下载次数: 22

TA的精华主题

TA的得分主题

发表于 2024-2-7 13:43 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-2-7 13:44 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

是的,各班统计各班的人数

TA的精华主题

TA的得分主题

发表于 2024-2-7 13:46 | 显示全部楼层
现在统计的就是各分数段的人数啊,代码应该不用改吧。

TA的精华主题

TA的得分主题

发表于 2024-2-7 13:53 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
  1. Sub test0() '为何 及格率、优秀率为 100% ?

  2.   Dim Data, Result(), Dict As Object, strKey As String, ss As String
  3.   Dim i As Long, j As Long, Cnt As Long, posRow As Long, posCol As Long
  4.   Dim pas As Double, exc As Double, high As Double, low As Double, Total As Double
  5.   
  6.   high = 660
  7.   low = 600
  8.   posCol = 13
  9.   Set Dict = CreateObject("Scripting.Dictionary")
  10.   Dict.Add "Higher", posCol
  11.   For i = high - 10 To 600 Step -10
  12.     posCol = posCol + 1
  13.     Dict.Add i, posCol
  14.   Next
  15. '  For j = i - 10 To low Step -20
  16. '    posCol = posCol + 1
  17. '    Dict.Add j, posCol
  18. '    Dict.Add j + 10, posCol
  19. '  Next
  20.   Dict.Add "Lower", posCol + 1
  21.   ReDim Result(1 To 234, 1 To posCol + 1)
  22.   
  23.   Sheet9.Activate
  24.   If Len(Range("G2").Value) Then exc = Range("G2").Value Else exc = 560
  25.   If Len(Range("I2").Value) Then pas = Range("I2").Value Else pas = 420
  26.   
  27.   Data = Sheet1.Range("A4:L" & Sheet1.Range("A" & Rows.Count).End(xlUp).Row)
  28.   For i = 1 To UBound(Data)
  29.     strKey = Trim(Data(i, 1))
  30.    
  31.     If Dict.Exists(strKey) Then
  32.       posRow = Dict(strKey)
  33.     Else
  34.       Cnt = Cnt + 1
  35.       Result(Cnt, 1) = strKey
  36.       Result(Cnt, 11) = 0
  37.       Result(Cnt, 12) = 10 ^ 6
  38.       Dict.Add strKey, Cnt
  39.       posRow = Cnt
  40.     End If
  41.    
  42. '    If Trim(Data(i, 1)) <> strKey Then  '数据有序时,这快一丁点儿 约 0.01s
  43. '      Cnt = Cnt + 1
  44. '      Result(Cnt, 1) = strKey
  45. '      Result(Cnt, 11) = 0
  46. '      Result(Cnt, 12) = 10 ^ 6
  47. '      strKey = Trim(Data(i, 1))
  48. '      posRow = Cnt
  49. '    End If
  50.     Result(posRow, 2) = Result(posRow, 2) + 1
  51.    
  52.     If Len(Data(i, 12)) Then
  53.       Total = Val(Data(i, 12))
  54.       Result(posRow, 3) = Result(posRow, 3) + 1
  55.       Result(posRow, 5) = Result(posRow, 5) + Total
  56.       If Total >= exc Then Result(posRow, 7) = Result(posRow, 7) + 1
  57.       If Total >= pas Then Result(posRow, 9) = Result(posRow, 9) + 1
  58.       If Total > Result(posRow, 11) Then Result(posRow, 11) = Total
  59.       If Total < Result(posRow, 12) Then Result(posRow, 12) = Total
  60.       If Total < low Then
  61.         posCol = Dict("Lower")
  62.         Result(posRow, posCol) = Result(posRow, posCol) + 1
  63.       Else
  64.         If Total < high Then j = Dict(Int(Total / 10) * 10) Else j = Dict("Higher")
  65.         For posCol = j To UBound(Result, 2) - 1
  66.           Result(posRow, posCol) = Result(posRow, posCol) + 1
  67.         Next
  68.       End If
  69.     End If
  70.   Next
  71.   
  72.   For i = 1 To Cnt
  73.     For j = 4 To 10 Step 2
  74.       Result(i, j) = Result(i, j - 1) / Result(i, 3 + (j = 4))
  75.     Next
  76.   Next
  77.   
  78.   ActiveSheet.UsedRange.Offset(3).ClearContents
  79.   Range("A4").Resize(Cnt, UBound(Result, 2)) = Result
  80.   
  81.   Set Dict = Nothing
  82.   Beep
  83. End Sub
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-2-7 13:54 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
ykcbf1100 发表于 2024-2-7 13:46
现在统计的就是各分数段的人数啊,代码应该不用改吧。

第二段包含着第一段和第二段的,我的要求是各段内的

TA的精华主题

TA的得分主题

发表于 2024-2-7 14:06 | 显示全部楼层
nl054685 发表于 2024-2-7 13:54
第二段包含着第一段和第二段的,我的要求是各段内的

附件供参考。。。

成绩统计.7z

30.22 KB, 下载次数: 29

评分

3

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-2-7 14:07 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-2-7 14:13 | 显示全部楼层

TA的精华主题

TA的得分主题

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

本版积分规则

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

GMT+8, 2024-11-18 21:38 , Processed in 0.044853 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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