ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 自习安排次数统计

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-9-5 23:03 | 显示全部楼层
参与一下,仅供参考。。。
image.png
image.png
image.png

自习安排统计表(2).zip

43.24 KB, 下载次数: 7

评分

3

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-9-5 23:03 | 显示全部楼层
代码如下。。。
Sub test()
    Set d = CreateObject("scripting.dictionary")
    Set dic = CreateObject("scripting.dictionary")
    Set wb = ThisWorkbook
    Set sht = wb.Sheets("月汇总")
    With sht
        brr = .Range("a4:i" & .Cells(6, "a").End(4).Row)
        brr(1, 8) = "培优班"
        x = .[k2]: y = [o2]
    End With
   
    ReDim br(x To y)
    For i = x To y
        br(i) = i
    Next
   
    For i = 3 To UBound(brr)
        d(brr(i, 1)) = i
    Next
    For i = 2 To UBound(brr, 2)
        If brr(1, i) <> Empty Then dic(brr(1, i)) = i Else dic("管  理") = i
    Next
   
    ReDim crr(1 To UBound(brr) - 2, 1 To 8)
   
    For Each num In br
        s = Application.Text(num, "[dbnum1]")
        On Error Resume Next
        Set sh = wb.Sheets("第" & s & "周")
        If Not sh Is Nothing Then
            On Error GoTo 0
            arr = sh.Range(sh.[a4], sh.Cells(sh.Cells(Rows.Count, 2).End(3).Row, "m"))
            For i = 2 To UBound(arr)
                If arr(i, 2) = Empty Then arr(i, 2) = arr(i - 1, 2)
            Next
            For i = 2 To UBound(arr, 2)
                If arr(1, i) = Empty Then arr(1, i) = arr(1, i - 1)
            Next
            For i = 3 To UBound(arr)
                For j = 3 To UBound(arr, 2)
                    s = arr(i, j)
                    If d.exists(s) Then
                        If arr(i, 2) = "下午延时服务" Then
                            If dic.exists(arr(1, j)) Then
                                crr(d(s) - 2, dic(arr(1, j)) - 1) = crr(d(s) - 2, dic(arr(1, j)) - 1) + 1
                            Else
                                crr(d(s) - 2, 1) = crr(d(s) - 2, 1) + 1
                            End If
                        ElseIf arr(i, 2) = "晚3" Then
                            crr(d(s) - 2, 4) = crr(d(s) - 2, 4) + 1
                        Else
                            crr(d(s) - 2, 3) = crr(d(s) - 2, 3) + 1
                        End If
                        crr(d(s) - 2, 8) = "=sum(rc[-7]:rc[-1])"
                    End If
                Next
            Next
        End If
        Set sh = Nothing
    Next
    sht.[b6:i39] = Empty
    sht.[b6].Resize(UBound(crr), 8) = crr
    Set d = Nothing
    Set dic = Nothing
    Beep
End Sub

评分

3

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-9-6 07:44 | 显示全部楼层
刚调整了下,超过十周以上也可以。。。
image.png
image.png
image.png

自习安排统计表(2).zip

45.77 KB, 下载次数: 8

评分

3

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-9-6 07:45 | 显示全部楼层
代码如下。。。
Sub test()
    Dim sh As Worksheet
    Set d = CreateObject("scripting.dictionary")
    Set dic = CreateObject("scripting.dictionary")
    Set wb = ThisWorkbook
    Set sht = wb.Sheets("月汇总")
    With sht
        brr = .Range("a4:i" & .Cells(6, "a").End(4).Row)
        brr(1, 8) = "培优班"
        x = .[k2]: y = .[o2]
    End With
   
    ReDim br(x To y)
    For i = x To y
        br(i) = i
    Next
   
    For i = 3 To UBound(brr)
        d(brr(i, 1)) = i
    Next
    For i = 2 To UBound(brr, 2)
        If brr(1, i) <> Empty Then dic(brr(1, i)) = i Else dic("管  理") = i
    Next
   
    ReDim crr(1 To UBound(brr) - 2, 1 To 8)
   
    For Each num In br
        s = Application.Text(num, "[dbnum1]")
        If Len(s) > 1 Then s = Mid(s, 2)
        On Error Resume Next
        Set sh = wb.Sheets("第" & s & "周")
        If Not sh Is Nothing Then
            On Error GoTo 0
            arr = sh.Range(sh.[a4], sh.Cells(sh.Cells(Rows.Count, 2).End(3).Row, "m"))
            For i = 2 To UBound(arr)
                If arr(i, 2) = Empty Then arr(i, 2) = arr(i - 1, 2)
            Next
            For i = 2 To UBound(arr, 2)
                If arr(1, i) = Empty Then arr(1, i) = arr(1, i - 1)
            Next
            For i = 3 To UBound(arr)
                For j = 3 To UBound(arr, 2)
                    s = arr(i, j)
                    If d.exists(s) Then
                        If arr(i, 2) = "下午延时服务" Then
                            If dic.exists(arr(1, j)) Then
                                crr(d(s) - 2, dic(arr(1, j)) - 1) = crr(d(s) - 2, dic(arr(1, j)) - 1) + 1
                            Else
                                crr(d(s) - 2, 1) = crr(d(s) - 2, 1) + 1
                            End If
                        ElseIf arr(i, 2) = "晚3" Then
                            crr(d(s) - 2, 4) = crr(d(s) - 2, 4) + 1
                        Else
                            crr(d(s) - 2, 3) = crr(d(s) - 2, 3) + 1
                        End If
                        crr(d(s) - 2, 8) = "=sum(rc[-7]:rc[-1])"
                    End If
                Next
            Next
        End If
        Set sh = Nothing
    Next
    sht.[b6:i39] = Empty
    sht.[b6].Resize(UBound(crr), 8) = crr
    Set d = Nothing
    Set dic = Nothing
    Beep
End Sub

评分

2

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-6 10:04 | 显示全部楼层
本帖最后由 阿Jk 于 2024-9-6 11:16 编辑

不好意思,因为要在月汇总第一列增加序号,麻烦老师再帮我改一下
1725592548544.png

TA的精华主题

TA的得分主题

发表于 2024-9-6 11:10 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
阿Jk 发表于 2024-9-6 10:04
不好意思,因为要在月汇总第一列增加序号,麻烦老师再帮我改一下


代码优化了一下
image.png

image.png
image.png

自习安排统计表(2).zip

46.53 KB, 下载次数: 7

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-9-6 11:11 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
代码如下。。。
Sub test()  '加了序号的
    Dim sh As Worksheet
    Set d = CreateObject("scripting.dictionary")
    Set dic = CreateObject("scripting.dictionary")
    Set wb = ThisWorkbook
    Set sht = wb.Sheets("月汇总")
    With sht
        brr = .Range("a4:j" & .Cells(6, "b").End(4).Row)
        brr(1, 9) = "培优班"
        x = .[k2]: y = .[o2]
    End With
    If Not IsNumeric(x) Or Not IsNumeric(y) Then MsgBox "输入周数的数字有误,请核实,退出!!": Exit Sub
    If y - x < 0 Then MsgBox "输入周数的数字有误,请核实,退出!!": Exit Sub
    ReDim br(x To y)
    For i = x To y
        br(i) = i
    Next
   
    For i = 3 To UBound(brr)
        If brr(i, 2) <> Empty Then d(brr(i, 2)) = i
    Next
    For i = 3 To UBound(brr, 2)
        If brr(1, i) <> Empty Then dic(brr(1, i)) = i - 1 Else dic("管  理") = i - 1    '插入多一列,不改下面代码,这里减1
    Next
   
    ReDim crr(1 To UBound(brr) - 2, 1 To 8)
   
    For Each num In br
        s = Application.Text(num, "[dbnum1]")       '这个其实工作表名称是数字就不用转换那么麻烦
        If Len(s) > 1 And Left(s, 1) = "一" Then s = Mid(s, 2)
        On Error Resume Next
        Set sh = wb.Sheets("第" & s & "周")
        If Not sh Is Nothing Then
            On Error GoTo 0
            arr = sh.Range(sh.[a4], sh.Cells(sh.Cells(Rows.Count, 2).End(3).Row, "m"))
            For i = 2 To UBound(arr)
                If arr(i, 2) = Empty Then arr(i, 2) = arr(i - 1, 2)
            Next
            For i = 2 To UBound(arr, 2)
                If arr(1, i) = Empty Then arr(1, i) = arr(1, i - 1)
            Next
            For i = 3 To UBound(arr)
                For j = 3 To UBound(arr, 2)
                    s = arr(i, j)
                    If d.exists(s) Then
                        If arr(i, 2) = "下午延时服务" Then
                            If dic.exists(arr(1, j)) Then
                                crr(d(s) - 2, dic(arr(1, j)) - 1) = crr(d(s) - 2, dic(arr(1, j)) - 1) + 1
                            Else
                                crr(d(s) - 2, 1) = crr(d(s) - 2, 1) + 1
                            End If
                        ElseIf arr(i, 2) = "晚3" Then
                            crr(d(s) - 2, 4) = crr(d(s) - 2, 4) + 1
                        Else
                            crr(d(s) - 2, 3) = crr(d(s) - 2, 3) + 1
                        End If
                        crr(d(s) - 2, 8) = "=sum(rc[-7]:rc[-1])"
                    End If
                Next
            Next
        End If
        Set sh = Nothing
    Next
    sht.[c6:j39] = Empty
    sht.[c6].Resize(UBound(crr), 8) = crr
    Set d = Nothing
    Set dic = Nothing
    Beep
End Sub


评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-14 15:35 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 阿Jk 于 2024-9-14 15:38 编辑

表格做了些简化,统计时,最后一栏的数据不能汇总,老师,麻烦再帮我看一下

自习安排表统计表(修改).zip

27.16 KB, 下载次数: 5

TA的精华主题

TA的得分主题

发表于 2024-9-14 16:56 | 显示全部楼层
本帖最后由 quqiyuan 于 2024-9-14 17:03 编辑
阿Jk 发表于 2024-9-14 15:35
表格做了些简化,统计时,最后一栏的数据不能汇总,老师,麻烦再帮我看一下

这样简单了很多,修改的也多了,仅供参考。。。
image.png


image.png

自习安排表统计表(修改).zip

26.59 KB, 下载次数: 7

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-9-14 16:57 | 显示全部楼层
本帖最后由 quqiyuan 于 2024-9-14 17:03 编辑
阿Jk 发表于 2024-9-14 15:35
表格做了些简化,统计时,最后一栏的数据不能汇总,老师,麻烦再帮我看一下

这样简单了很多,修改的也多了,仅供参考。。。


Sub 月汇总()  '加了序号的
    Dim sh As Worksheet
    Set d = CreateObject("scripting.dictionary")
    Set wb = ThisWorkbook
    Set sht = wb.Sheets("月汇总")
    With sht
        brr = .Range("a4:k" & .Cells(6, "b").End(4).Row)
        x = .[d2]: y = .[k2]
    End With
    If Not IsNumeric(x) Or Not IsNumeric(y) Then MsgBox "输入周数的数字有误,请核实,退出!!": Exit Sub
    If y - x < 0 Then MsgBox "输入周数的数字有误,请核实,退出!!": Exit Sub
    ReDim br(x To y)
    For i = x To y
        br(i) = i
    Next
    For i = 3 To UBound(brr)
        If brr(i, 2) <> Empty Then d(brr(i, 2)) = i
    Next
    ReDim crr(1 To UBound(brr) - 2, 1 To 9)
   
    For Each num In br
        s = Application.Text(num, "[dbnum1]")       '这个其实工作表名称是数字就不用转换那么麻烦
        If Len(s) > 1 And Left(s, 1) = "一" Then s = Mid(s, 2)
        On Error Resume Next
        Set sh = wb.Sheets("第" & s & "周")
        If Not sh Is Nothing Then
            On Error GoTo 0
            arr = sh.Range(sh.[a4], sh.Cells(sh.UsedRange.Rows.Count, "m"))
            For i = 3 To UBound(arr)
                For j = 3 To UBound(arr, 2)
                    s = arr(i, j)
                    If d.exists(s) Then
                        If arr(1, j) <> "管  理" Then
                            crr(d(s) - 2, 1) = crr(d(s) - 2, 1) + 1
                        Else
                            crr(d(s) - 2, 2) = crr(d(s) - 2, 2) + 1
                        End If
                        crr(d(s) - 2, 8) = "=sum(rc[-7]:rc[-1])"
                        crr(d(s) - 2, 9) = "=sumproduct(rc[-1]*50)"
                    End If
                Next
            Next
        End If
        Set sh = Nothing
    Next
    sht.[c6:k24] = Empty
    sht.[c6].Resize(UBound(crr), 9) = crr
    Set d = Nothing
    Beep
End Sub




评分

1

查看全部评分

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

本版积分规则

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

GMT+8, 2024-11-24 10:22 , Processed in 0.056456 second(s), 20 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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