ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 按照对应的规则统计数据填入新的sheet为什么不成功

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-7-5 13:20 | 显示全部楼层 |阅读模式
各位大佬,求助一下,这个程序为什么不起作用
需求是
   1、按照Devition List中A列和Statistical Table中B列文件名的对应关系
   2、根据Statistical Table的第6行C列开始的数据
   3、统计Devition List中D列的数据
效果图如下:
image.png

代码如下

Sub CountUniqueData()
    Dim wb As Workbook
    Dim wsDev As Worksheet, wsCode As Worksheet
    Dim lastRowDev As Long, lastRowCode As Long, lastColumn As Long
    Dim devRange As Range, codeRange As Range
    Dim devDict As Object
    Dim devValue As String, codeValue As String
    Dim uniqueCount As Long
    Dim i As Long, j As Long, k As Long
    Dim countNonEmpty As Long, countNonEmpty1 As Long
    Dim DLValue As String, DMValue As String
    Dim DLTValue As String, DMTValue As String
   
    Set wb = ThisWorkbook
   
    ' 设置Devition List和Statistical Table的工作表
    Set wsDev = wb.Sheets("Devition List") ' 修改为实际的工作表名称
    Set wsCode = wb.Sheets("Statistical Table") ' 修改为实际的工作表名称

    ' 确定Devition List最后一个非空单元格的行号
    lastRowDev = wsDev.Cells(wsDev.Rows.Count, "A").End(xlUp).Row
   
    ' 定义数据范围,表示从 A 列的第 5 行到 lastRowDev 行,以及 D 列的第 5 行到 lastRowDev 行的范围
    Set devRange = wsDev.Range("A5:A" & lastRowDev & ", D5:D" & lastRowDev)
   
    ' 获取Statistical Table中B列倒数第四个非空单元格的行号
    lastRowCode = wsCode.Cells(wsCode.Rows.Count, "B").End(xlUp).Row
    countNonEmpty = 0
    For i = lastRowCode To 1 Step -1
        If Not IsEmpty(wsCode.Cells(i, "B").Value) Then
            countNonEmpty = countNonEmpty + 1
            If countNonEmpty = 4 Then
                lastRowCode = i
                Exit For
            End If
        End If
    Next i
   
    ' 获取Statistical Table中第6行的倒数第3列列号
    lastColumn = wsCode.Cells(6, wsCode.Columns.Count).End(xlToLeft).Column
    countNonEmpty1 = 0
    For j = lastColumn To 1 Step -1
        If Not IsEmpty(wsCode.Cells(6, j).Value) Then
            countNonEmpty1 = countNonEmpty1 + 1
            If countNonEmpty1 = 3 Then
                lastColumn = j
                Exit For
            End If
        End If
    Next j
   
    ' Union 函数用于组合多个不相邻的范围成一个单独的范围对象
    ' wsCode.Range("B8:B" & lastRowCode) 表示B列的第8行到 lastRowCode 行的范围。
    ' wsCode.Range(wsCode.Cells(6, 5), wsCode.Cells(6, lastColumn)) 表示第6行的第5列到 lastColumn 列的范围。
    Set codeRange = Union(wsCode.Range("B8:B" & lastRowCode), wsCode.Range(wsCode.Cells(6, 5), wsCode.Cells(6, lastColumn)))
   
    ' 使用字典来存储每个A列和D列组合的唯一值
    Set devDict = CreateObject("Scripting.Dictionary")
   
    ' 遍历Devition List中的每一行,构建字典(A列和D列组合)
    For i = 5 To lastRowDev
        devValue = wsDev.Cells(i, "A").Value & "|" & wsDev.Cells(i, "D").Value
        If Not devDict.exists(devValue) Then
            devDict(devValue) = 0
        End If
    Next i
   
    ' 遍历Statistical Table中的每一行,计算符合条件的唯一组合数量
    For i = 8 To lastRowCode
        For j = 5 To lastColumn
            codeValue = wsCode.Cells(i, "B").Value & "|" & wsCode.Cells(6, j).Value
            If devDict.exists(codeValue) Then
                devDict(codeValue) = devDict(codeValue) + 1
            End If
        Next j
    Next i
   
    ' 将结果写入Statistical Table中
    For i = 5 To lastRowDev 'Devition List A列从5行开始到非空行的最后一行
        For j = 8 To lastRowCode 'Statistical Table B列第8行开始到倒数第4行
            devValue = wsDev.Cells(i, "A").Value & "|" & wsDev.Cells(i, "D").Value
            If devDict.exists(devValue) Then
                DLValue = wsDev.Cells(j, "A").Value
                DMValue = wsCode.Cells(i, "B").Value
                If DLValue = DMValue Then
                    DLTValue = wsDev.Cells(j, "D").Value
                    For k = 3 To lastColumn 'Statistical Table中第6行第三列到倒数第三列
                        DMTValue = wsCode.Cells(6, k).Value
                        If DLTValue = DMTValue Then
                            wsCode.Cells(j, k).Value = devDict(devValue)
                           '  Exit For ' 只需要找到一次匹配即可,可以选择退出内层循环
                        End If
                    Next k
                End If
            End If
        Next j
    Next i
   
    ' 清除对象引用
    Set devDict = Nothing
    Set codeRange = Nothing
    Set devRange = Nothing
    Set wsCode = Nothing
    Set wsDev = Nothing
    Set wb = Nothing
   
    MsgBox "统计完成!", vbInformation
End Sub




统计数据.rar

37.04 KB, 下载次数: 12

TA的精华主题

TA的得分主题

发表于 2024-7-5 15:51 | 显示全部楼层
重新一段吧,看太费劲了:
Sub test()
    Set d = CreateObject("scripting.dictionary")
    arr = Sheets("Devition List").[a4].CurrentRegion
    For i = 2 To UBound(arr)
        d(arr(i, 1) & "|" & arr(i, 4)) = d(arr(i, 1) & "|" & arr(i, 4)) + 1
    Next
    brr = Sheets("Statistical Table").Range("B8:D23").Value
    cid = Sheets("Statistical Table").[C6].Value
    did = Sheets("Statistical Table").[D6].Value
    For i = 1 To UBound(brr)
        brr(i, 2) = d(brr(i, 1) & ".c|" & cid)
        brr(i, 3) = d(brr(i, 1) & ".c|" & did)
    Next
    Sheets("Statistical Table").Range("B8:D23") = brr
    Set d = Nothing
   
End Sub

Report.zip

34.46 KB, 下载次数: 9

TA的精华主题

TA的得分主题

发表于 2024-7-8 10:45 | 显示全部楼层
  • 数据不干净,StatisticalTable的B列文件名有格式,看到的文件名并非真实的。
  • 这里没用VBA,直接函数公式也行

Report.rar

35.41 KB, 下载次数: 2

TA的精华主题

TA的得分主题

发表于 2024-7-8 11:02 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
你这个 代码是那里来的,注释写的好清晰啊,

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-7-8 14:06 | 显示全部楼层
titi012 发表于 2024-7-8 11:02
你这个 代码是那里来的,注释写的好清晰啊,

自己写的,新手怕忘了,所以每个都注释了一下

评分

1

查看全部评分

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

本版积分规则

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

GMT+8, 2024-11-18 00:24 , Processed in 0.037020 second(s), 16 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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