ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 按结算时间“2024-5-1”,放单子用户姓名和接单用户合计,等于放单价-接单价

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-6-25 11:09 | 显示全部楼层 |阅读模式
各位老师好!现在有如下左边的数据源,需要生成右边的统计表格。想学习一下各位老师用VBA都有什么思路解决。
在此先感谢各位老师的围观解答。



微信图片_20240625110233.png
微信图片_20240625110518.png

订单_2024-05-01_2024-05-31.zip

13.07 KB, 下载次数: 10

TA的精华主题

TA的得分主题

发表于 2024-6-25 11:26 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
字典呗      

TA的精华主题

TA的得分主题

发表于 2024-6-25 11:32 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 逐渐陌生 于 2024-6-25 11:43 编辑

=HSTACK(PIVOTBY(I1:I22,L1:L22,C1:C22,SUM,,,,0),DROP(PIVOTBY(I1:I22,F1:F22,D1:D22,SUM,,,,0),,1))

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-25 12:54 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
Sub GenerateNewStatistics()     Dim ws As Worksheet     Dim lastRow As Long     Dim i As Long     Dim newWs As Worksheet      Set ws = Sheets("Sheet0")      '将 C 列和 D 列的文本处理为数值     lastRow = ws.Cells(ws.Rows.Count, "C").End(xlUp).Row     For i = 1 To lastRow         ws.Cells(i, 3).Value = Val(ws.Cells(i, 3).Value)         ws.Cells(i, 4).Value = Val(ws.Cells(i, 4).Value)     Next i      '处理 I 列的时间格式     lastRow = ws.Cells(ws.Rows.Count, "I").End(xlUp).Row     For i = 2 To lastRow         Dim originalTime As String         originalTime = ws.Cells(i, 9).Value         Dim newTime As String         newTime = Left(originalTime, 10)         ws.Cells(i, 9).Value = newTime     Next i      '创建新的工作表用于统计     Set newWs = Worksheets.Add      '计算相同放单用户姓名的放单价合计     Dim userNames As Object     Set userNames = CreateObject("Scripting.Dictionary")      lastRow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row     For i = 2 To lastRow         Dim userName As String         userName = ws.Cells(i, 1).Value         Dim settlementTime As String         settlementTime = ws.Cells(i, 9).Value         If settlementTime = "2024-5-1" Then             If Not userNames.Exists(userName) Then                 userNames.Add userName, 0             End If             userNames(userName) = userNames(userName) + ws.Cells(i, 3).Value         End If     Next i      '在新工作表中输出放单用户姓名和放单价合计     newWs.Cells(1, 1).Value = "放单用户姓名"     newWs.Cells(1, 2).Value = "放单价合计"     i = 2     For Each Key In userNames.Keys         newWs.Cells(i, 1).Value = Key         newWs.Cells(i, 2).Value = userNames(Key)         i = i + 1     Next      '计算接单用户合计     Dim receivingUserNames As Object     Set receivingUserNames = CreateObject("Scripting.Dictionary")      For i = 2 To lastRow         Dim receivingUserName As String         receivingUserName = ws.Cells(i, 2).Value         Dim settlementTime As String         settlementTime = ws.Cells(i, 9).Value         If settlementTime = "2024-5-1" Then             If Not receivingUserNames.Exists(receivingUserName) Then                 receivingUserNames.Add receivingUserName, 0             End If             receivingUserNames(receivingUserName) = receivingUserNames(receivingUserName) + (ws.Cells(i, 3).Value - ws.Cells(i, 4).Value)         End If     Next i      '在新工作表中输出接单用户姓名和接单用户合计     newWs.Cells(1, 4).Value = "接单用户姓名"     newWs.Cells(1, 5).Value = "接单用户合计"     i = 2     For Each Key In receivingUserNames.Keys         newWs.Cells(i, 4).Value = Key         newWs.Cells(i, 5).Value = receivingUserNames(Key)         i = i + 1     Next End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-25 12:55 | 显示全部楼层
Sub GenerateNewStatistics()
    Dim ws As Worksheet
    Dim lastRow As Long
    Dim i As Long
    Dim newWs As Worksheet

    Set ws = Sheets("Sheet0")

    '将 C 列和 D 列的文本处理为数值
    lastRow = ws.Cells(ws.Rows.Count, "C").End(xlUp).Row
    For i = 1 To lastRow
        ws.Cells(i, 3).Value = Val(ws.Cells(i, 3).Value)
        ws.Cells(i, 4).Value = Val(ws.Cells(i, 4).Value)
    Next i

    '处理 I 列的时间格式
    lastRow = ws.Cells(ws.Rows.Count, "I").End(xlUp).Row
    For i = 2 To lastRow
        Dim originalTime As String
        originalTime = ws.Cells(i, 9).Value
        Dim newTime As String
        newTime = Left(originalTime, 10)
        ws.Cells(i, 9).Value = newTime
    Next i

    '创建新的工作表用于统计
    Set newWs = Worksheets.Add

    '计算相同放单用户姓名的放单价合计
    Dim userNames As Object
    Set userNames = CreateObject("Scripting.Dictionary")

    lastRow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row
    For i = 2 To lastRow
        Dim userName As String
        userName = ws.Cells(i, 1).Value
        Dim settlementTime As String
        settlementTime = ws.Cells(i, 9).Value
        If settlementTime = "2024-5-1" Then
            If Not userNames.Exists(userName) Then
                userNames.Add userName, 0
            End If
            userNames(userName) = userNames(userName) + ws.Cells(i, 3).Value
        End If
    Next i

    '在新工作表中输出放单用户姓名和放单价合计
    newWs.Cells(1, 1).Value = "放单用户姓名"
    newWs.Cells(1, 2).Value = "放单价合计"
    i = 2
    For Each Key In userNames.Keys
        newWs.Cells(i, 1).Value = Key
        newWs.Cells(i, 2).Value = userNames(Key)
        i = i + 1
    Next

    '计算接单用户合计
    Dim receivingUserNames As Object
    Set receivingUserNames = CreateObject("Scripting.Dictionary")

    For i = 2 To lastRow
        Dim receivingUserName As String
        receivingUserName = ws.Cells(i, 2).Value
        Dim settlementTime As String
        settlementTime = ws.Cells(i, 9).Value
        If settlementTime = "2024-5-1" Then
            If Not receivingUserNames.Exists(receivingUserName) Then
                receivingUserNames.Add receivingUserName, 0
            End If
            receivingUserNames(receivingUserName) = receivingUserNames(receivingUserName) + (ws.Cells(i, 3).Value - ws.Cells(i, 4).Value)
        End If
    Next i

    '在新工作表中输出接单用户姓名和接单用户合计
    newWs.Cells(1, 4).Value = "接单用户姓名"
    newWs.Cells(1, 5).Value = "接单用户合计"
    i = 2
    For Each Key In receivingUserNames.Keys
        newWs.Cells(i, 4).Value = Key
        newWs.Cells(i, 5).Value = receivingUserNames(Key)
        i = i + 1
    Next
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-25 13:15 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-25 15:37 | 显示全部楼层
#在这里快速回复 各位老师天气热,会在回复最优秀者答谢一杯瑞幸咖啡!!!请大家多多参加回复哦#

TA的精华主题

TA的得分主题

发表于 2024-6-25 15:49 | 显示全部楼层
本帖最后由 混沌音符 于 2024-6-25 15:51 编辑

一跑起来不就提示Dim settlementTime As String重复声明了吗?

Dim 跟Set CreateObject("Scripting.Dictionary")最好放最前面,一起声明

另外,应该去VBA区提问吧?

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-6-25 15:53 | 显示全部楼层
混沌音符 发表于 2024-6-25 15:49
一跑起来不就提示Dim settlementTime As String重复声明了吗?

Dim 跟Set CreateObject("Scripting.Dic ...

第一次发错地方了

TA的精华主题

TA的得分主题

发表于 2024-6-25 16:10 | 显示全部楼层
酸茄子 发表于 2024-6-25 12:55
Sub GenerateNewStatistics()
    Dim ws As Worksheet
    Dim lastRow As Long

这是自己写的吗?一口气写出来的?有运行过吗?
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-16 07:37 , Processed in 0.063382 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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