ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 求助拆分表格的代码

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-2-19 21:13 | 显示全部楼层 |阅读模式
求助拆分表格的代码,感谢!!

求助.zip

9.14 KB, 下载次数: 12

TA的精华主题

TA的得分主题

发表于 2024-2-19 21:16 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-2-19 22:19 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
附件供参考。。。

求助.7z

24.47 KB, 下载次数: 19

TA的精华主题

TA的得分主题

发表于 2024-2-19 22:19 | 显示全部楼层
参与一下。。。
  1. Sub ykcbf()  '//2024.2.19
  2.     Dim arr, brr, d
  3.     Set d = CreateObject("scripting.dictionary")
  4.     Set d1 = CreateObject("scripting.dictionary")
  5.     Set d2 = CreateObject("scripting.dictionary")
  6.     Application.ScreenUpdating = False
  7.     Application.DisplayAlerts = False
  8.     Dim tm: tm = Timer
  9.     Set ws = ThisWorkbook
  10.     Set sh = ws.Sheets("Sheet1")
  11.     For Each sht In Sheets
  12.         If sht.Name <> sh.Name Then
  13.             sht.Delete
  14.         End If
  15.     Next
  16.     arr = sh.[a1].CurrentRegion
  17.     For j = 2 To UBound(arr, 2)
  18.         s = Split(arr(1, j))(0)
  19.         d1(s) = ""
  20.         For i = 2 To UBound(arr)
  21.             s1 = arr(i, 1)
  22.             d2(s1) = s1
  23.             ss = s & "|" & arr(i, 1)
  24.             d(ss) = arr(i, j)
  25.         Next
  26.     Next
  27.     For Each k In d1.keys
  28.         Set sht = ws.Sheets.Add(after:=ws.Sheets(ws.Sheets.Count))
  29.         m = 0
  30.         ReDim brr(1 To UBound(arr), 1 To UBound(arr))
  31.         With sht
  32.             .Name = k
  33.             .[a1] = arr(1, 1): .[a2] = k
  34.             .[b1].Resize(1, d2.Count) = d2.keys
  35.             arr = .UsedRange
  36.             For i = 2 To UBound(arr)
  37.                 For j = 2 To UBound(arr, 2)
  38.                     s = arr(i, 1) & "|" & arr(1, j)
  39.                     If d.exists(s) Then
  40.                         arr(i, j) = d(s)
  41.                     End If
  42.                 Next
  43.             Next
  44.             With .UsedRange
  45.                 .Value = arr
  46.                 .Borders.LineStyle = 1
  47.                 .HorizontalAlignment = xlCenter
  48.                 .VerticalAlignment = xlCenter
  49.                 .EntireColumn.AutoFit
  50.             End With
  51.         End With
  52.     Next k
  53.     sh.Activate
  54.     Set d = Nothing
  55.     Application.DisplayAlerts = True
  56.     Application.ScreenUpdating = True
  57.     MsgBox "共用时:" & Format(Timer - tm) & "秒!"
  58. End Sub

复制代码


评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-2-20 09:12 | 显示全部楼层
  1. function test(){
  2.         Application.DisplayAlerts = false
  3.         sht = ActiveSheet
  4.         for ( let sh of Sheets){
  5.                 if (sh.Name != sht.Name) sh.Delete()
  6.         }
  7.         let arr = sht.Range("a1").CurrentRegion.Value2
  8.         let n = arr[0].length , c = arr.length
  9.         for(let i = 1 ; i < n ; i++ ){
  10.                 let res =  arr.map(v=> [v[0],v[i]])
  11.                 let sh = Sheets.Add({After:Sheets(Sheets.Count)})
  12.                 sh.Name = arr[0][i]               
  13.                 sh.Range("a1").Resize(c,2).Value2 = res
  14.                 sh.UsedRange.Columns.AutoFit()
  15.         }
  16.         sht.Activate()
  17.         Application.DisplayAlerts = true
  18. }
复制代码
求助.7z (8.06 KB, 下载次数: 2)

TA的精华主题

TA的得分主题

发表于 2024-2-20 10:46 | 显示全部楼层
Sub 拆分()
Application.ScreenUpdating = False
Application.DisplayAlerts = False
For Each sht In Sheets
    If sht.Index > 1 Then
        sht.Delete
    End If
Next
Application.DisplayAlerts = True
Set sh = Sheets("Sheet1")
ar = sh.[a1].CurrentRegion
For j = 2 To UBound(ar, 2)
    If ar(1, j) <> "" Then
        mc = Split(ar(1, j), " ")(0)
        sh.Copy after:=Sheets(Sheets.Count)
        With ActiveSheet
            .Name = mc
            For s = UBound(ar, 2) To 2 Step -1
                If s <> j Then
                    .Columns(s).Delete
                End If
            Next s
            For Each shp In .Shapes
                shp.Delete
            Next shp
        End With
    End If
Next j
Application.ScreenUpdating = True
MsgBox "拆分完毕!"
End Sub

TA的精华主题

TA的得分主题

发表于 2024-2-20 10:54 | 显示全部楼层
Sub 拆分()
Application.ScreenUpdating = False
Application.DisplayAlerts = False
w = MsgBox("拆分为工作表选是,拆分为工作簿选否", vbYesNoCancel)
If w = vbCancel Then End
If w = vbNo Then GoTo 10
For Each sht In Sheets
    If sht.Index > 1 Then
        sht.Delete
    End If
Next
Application.DisplayAlerts = True
10:
Set ws = ThisWorkbook
Set sh = ws.Sheets("Sheet1")
ar = sh.[a1].CurrentRegion
For j = 2 To UBound(ar, 2)
    If ar(1, j) <> "" Then
        mc = Split(ar(1, j), " ")(0)
        If w = vbYes Then
            sh.Copy after:=Sheets(Sheets.Count)
            Set sht = ws.ActiveSheet
        Else
            sh.Copy
            Set wb = ActiveWorkbook
            Set sht = wb.ActiveSheet
        End If
        With sht
            .Name = mc
            For s = UBound(ar, 2) To 2 Step -1
                If s <> j Then
                    .Columns(s).Delete
                End If
            Next s
            For Each shp In .Shapes
                shp.Delete
            Next shp
        End With
        If w = vbNo Then wb.SaveAs Filename:=ThisWorkbook.Path & "\" & mc & ".xlsx": wb.Close
    End If
Next j
Application.ScreenUpdating = True
MsgBox "拆分完毕!"
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-2-20 10:56 | 显示全部楼层
自由选择拆分为工作簿还是工作表
求助.rar (22.79 KB, 下载次数: 10)

TA的精华主题

TA的得分主题

发表于 2024-2-20 10:57 | 显示全部楼层
求助.rar (22.79 KB, 下载次数: 9)

TA的精华主题

TA的得分主题

发表于 2024-2-20 10:58 | 显示全部楼层
可以自由选择拆分为工作簿还是工作表,供参考

评分

1

查看全部评分

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

本版积分规则

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

GMT+8, 2024-11-18 17:42 , Processed in 0.040074 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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