ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 文本的多条件分类汇总

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-11-6 13:40 | 显示全部楼层
2024110602.JPG


行、列标题带排序的凑一个!

TA的精华主题

TA的得分主题

发表于 2024-11-6 19:50 | 显示全部楼层
参考附件内容

导出1.zip

18.55 KB, 下载次数: 1

TA的精华主题

TA的得分主题

发表于 2024-11-6 20:28 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-11-6 20:29 | 显示全部楼层
Sub fenlei11()
Dim i, j, k, irow, irow1, m, n, p, t, x, y, z
Dim kk  As String
Dim a As Date
a = Time
Dim arr
Dim d1 As Object
Dim d2 As Object
Dim d3 As Object
Set d1 = CreateObject("scripting.dictionary")
Set d2 = CreateObject("scripting.dictionary")
Set d3 = CreateObject("scripting.dictionary")
Application.ScreenUpdating = False
Application.DisplayAlerts = False
irow = Sheets("源").[a65536].End(xlUp).Row
arr = Sheets("源").Range("a1:c" & irow)
For i = 2 To irow
d1(arr(i, 2)) = ""
d2(arr(i, 1)) = ""
If Not d3.exists(arr(i, 2) & arr(i, 1)) Then
   d3(arr(i, 2) & arr(i, 1)) = arr(i, 3)
   Else
   d3(arr(i, 2) & arr(i, 1)) = d3(arr(i, 2) & arr(i, 1)) & "*" & arr(i, 3)
End If
Next
Sheets.Add after:=Sheets(Sheets.Count)
ActiveSheet.Name = "过渡"
With Sheets("过渡")

.[b1].Resize(1, d1.Count) = d1.keys
.[a2].Resize(d2.Count, 1) = Application.WorksheetFunction.Transpose(d2.keys)

For j = 2 To d1.Count + 1
   For k = 2 To d2.Count + 1
   .Cells(k, j) = d3(.Cells(1, j).Value & .Cells(k, 1).Value)
   Next
Next
.[a1].Resize(d2.Count + 1, d1.Count + 1).Sort .[a1], xlAscending, , , , , , xlYes, , , xlTopToBottom
.[b1].Resize(d2.Count + 1, d1.Count).Sort .[b1], xlAscending, , , , , , , , , xlLeftToRight
End With
Sheets("过渡").Rows(1).EntireRow.Copy Sheets("目标").[a1]
Sheets("目标").[a1] = "A"
For m = 2 To Sheets("过渡").[a65536].End(xlUp).Row
   irow1 = Sheets("目标").[a65536].End(xlUp).Row
   Sheets("过渡").Rows(m).EntireRow.Copy Sheets("目标").Cells(irow1 + 1, 1)
For n = 2 To d1.Count + 1
      x = Application.WorksheetFunction.Substitute(Sheets("目标").Cells(irow1 + 1, n), "*", "")
      y = Len(Sheets("目标").Cells(irow1 + 1, n))
      z = Len(x)
      t = y - z
        If t >= 1 Then
         kk = Sheets("目标").Cells(irow1 + 1, n)
          For p = 1 To t + 1
            Sheets("目标").Cells(irow1 + p, n) = Split(kk, "*")(p - 1)
            If Sheets("目标").Cells(irow1 + p, 1) = "" Then
              Sheets("目标").Cells(irow1 + p, 1) = Sheets("目标").Cells(irow1 + p - 1, 1)
            End If
           Next
        End If
Next
Next
Sheets("目标").[a1] = ""
Sheets("过渡").Delete
Application.ScreenUpdating = True
Application.DisplayAlerts = True
MsgBox "ok"
MsgBox Time - a
End Sub

TA的精华主题

TA的得分主题

发表于 2024-11-6 20:31 | 显示全部楼层
欢迎大家批评指正

导出20241106.rar

31.31 KB, 下载次数: 4

这是初步结果

TA的精华主题

TA的得分主题

发表于 2024-11-6 22:07 | 显示全部楼层

大佬,厉害,代码学不懂得了

TA的精华主题

TA的得分主题

发表于 2024-11-7 09:41 | 显示全部楼层
Sub test()

Dim d As New Dictionary
Dim d1 As New Dictionary
Dim d2 As New Dictionary
Dim arr
Dim brr()
Dim arr1(), arr2()
Dim x, y, i, j, k As Integer
Dim tem
Dim crr(1 To 9, 1 To 9)
Dim n1, n2

k = Range("a1").End(xlDown).Row
arr = Range("a2:c" & k)
ReDim brr(1 To UBound(arr), 1 To 3)
For x = 1 To UBound(arr)
    brr(x, 1) = Right(arr(x, 1), 1)
    brr(x, 2) = Right(arr(x, 2), 1)
    brr(x, 3) = arr(x, 3)
    d(brr(x, 1) & "*" & brr(x, 2)) = d(brr(x, 1) & "*" & brr(x, 2)) & "*" & brr(x, 3)
Next x
For x = 1 To UBound(arr)
    d1(arr(x, 1)) = ""
    d2(arr(x, 2)) = ""
Next x
ReDim arr1(1 To d1.Count)
ReDim arr2(1 To d2.Count)
For x = 1 To d1.Count
    arr1(x) = d1.Keys(x - 1)
Next x
For x = 1 To d2.Count
    arr2(x) = d2.Keys(x - 1)
Next x
For x = 1 To UBound(arr1) - 1
    For y = x + 1 To UBound(arr1)
        If arr1(x) > arr1(y) Then
            tem = arr1(y)
            arr1(y) = arr1(x)
            arr1(x) = tem
        End If
    Next y
Next x
For x = 1 To UBound(arr2) - 1
    For y = x + 1 To UBound(arr2)
        If arr2(x) > arr2(y) Then
            tem = arr2(y)
            arr2(y) = arr2(x)
            arr2(x) = tem
        End If
    Next y
Next x
For x = 1 To UBound(arr1)
Cells(1, x + 5) = arr1(x)
Next x
Range("e2").Resize(d2.Count) = Application.Transpose(arr2)
For x = 1 To d.Count - 1
n1 = Left(d.Keys(x - 1), 1)
n2 = Right(d.Keys(x - 1), 1)
crr(n2, n1) = Right(d.Items(x - 1), Len(d.Items(x - 1)) - 1)
Next x
Range("f2").Resize(9, 9) = crr
End Sub

TA的精华主题

TA的得分主题

发表于 2024-11-10 11:53 | 显示全部楼层
lizhipei78 发表于 2024-11-6 22:07
大佬,厉害,代码学不懂得了

折煞我了,我会的对于您和铭佬这样的大神来说都是皮毛。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-13 14:32 , Processed in 0.038366 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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