ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 行转置列

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-9-18 08:03 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
请求高手帮忙给弄一下,我对宏只了解一点点,但整理数据太多。用宏快。谢谢

行数据转置列.zip (12.12 KB, 下载次数: 14)



TA的精华主题

TA的得分主题

发表于 2018-9-18 09:43 | 显示全部楼层
  1. Private Sub CommandButton1_Click()
  2.     For i = 26 To 36
  3.         If Cells(i, 3) <> "" Then
  4.             s = Split(Cells(i, 3), "-")(0)
  5.             If Cells(i - 1, 3) = "" Then
  6.                 p = 0
  7.             Else
  8.                 p = Split(Cells(i - 1, 3), "-")(0)
  9.             End If
  10.             If s <> p Then
  11.                 ii = i
  12.                 n = 4
  13.                 Cells(ii, n) = Cells(i, 3)
  14.             Else
  15.                 n = n + 1
  16.                 Cells(ii, n) = Cells(i, 3)
  17.             End If
  18.         End If
  19.      Next
  20. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2018-9-18 09:45 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
行数据转置列.rar (20.88 KB, 下载次数: 24)

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-18 13:58 | 显示全部楼层
您好,我怎么执行没有反应,我可能没有表达明白,第一步是先将D到L列超链接数值转置对应的A列,第二步将参照A列,自动显示序列号,第三步将序列号,转置到对应的D-L区域,呵呵

TA的精华主题

TA的得分主题

发表于 2018-9-18 15:35 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
……仅供参考……

行数据转置列.rar

28.37 KB, 下载次数: 14

TA的精华主题

TA的得分主题

发表于 2018-9-18 15:36 | 显示全部楼层
Option Explicit
Sub test()
Dim ar, tp, r&, c%, k&, t&, n%, y&
Application.ScreenUpdating = False
With Sheet1
    ar = .[a1:l6]
    ReDim tp(1 To 9999, 1 To UBound(ar, 2))
    k = 1
    For c = 1 To 12
        tp(k, c) = ar(k, c)
    Next
    tp(k, 2) = "转置"
    t = 0
    For r = 2 To UBound(ar)
        k = k + 1
        y = k
        tp(k, 1) = ar(r, 1)
        n = 0
        For c = 4 To UBound(ar, 2)
            If Len(ar(r, c)) Then n = n + 1
        Next
        If n Then t = t + 1
        n = 0
        For c = 4 To UBound(ar, 2)
            If Len(ar(r, c)) Then
                n = n + 1
                tp(k, 1) = ar(r, 1)
                tp(k, 2) = ar(r, c) & "\" & .Cells(r, c).Hyperlinks(1).Address
                If n Then tp(y, n + 3) = "'" & t & "-" & n
                If n Then tp(k, 3) = "'" & t & "-" & n
                k = k + 1
            End If
        Next
        If n Then k = k - 1
    Next
End With
With Sheet2
    .Cells.Clear
    .[a1].Resize(k, 12) = tp
    For r = 2 To k
        If Len(tp(r, 2)) Then
                .Cells(r, 2).Hyperlinks.Add .Cells(r, 2), Split(tp(r, 2), "\")(1), , , Split(tp(r, 2), "\")(0)
        End If
    Next
    With .UsedRange
        .Font.Underline = -4142
        .Borders.LineStyle = 1
        .HorizontalAlignment = xlCenter
    End With
    .[a:l].EntireColumn.AutoFit
End With
Application.ScreenUpdating = True
End Sub

TA的精华主题

TA的得分主题

发表于 2018-9-18 15:39 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
  1. Sub 按钮1_Click()
  2.     Application.ScreenUpdating = False
  3.     Set sh = ActiveSheet
  4.     arr = sh.[a1].Resize(6, 12)
  5.     With Sheets("结果")
  6.         .UsedRange.Offset(1).ClearContents
  7.         r = 2
  8.         For j = 2 To UBound(arr)
  9.             sh.Cells(j, 1).Resize(1, 12).Copy .Cells(r, 1)
  10.             n = 0
  11.             For i = 4 To UBound(arr, 2)
  12.                 If Len(arr(j, i)) > 0 Then
  13.                     If n = 0 Then
  14.                         x = r
  15.                         n = n + 1
  16.                         .Cells(r, 3).NumberFormatLocal = "@"
  17.                         .Cells(r, 3) = .Cells(r, 1) & "-1"
  18.                         sh.Cells(j, i).Copy .Cells(r, 2)
  19.                         .Cells(x, i).Hyperlinks.Delete
  20.                         .Cells(x, i).NumberFormatLocal = "@"
  21.                         .Cells(r, i) = .Cells(r, 3)
  22.                     Else
  23.                         n = n + 1
  24.                         r = r + 1
  25.                         .Cells(r, 1) = .Cells(r - 1, 1)
  26.                         .Cells(r, 3).NumberFormatLocal = "@"
  27.                         .Cells(r, 3) = .Cells(r, 1) & "-" & n
  28.                         sh.Cells(j, i).Copy .Cells(r, 2)
  29.                         .Cells(x, i).Hyperlinks.Delete
  30.                         .Cells(x, i).NumberFormatLocal = "@"
  31.                         .Cells(x, i) = .Cells(r, 3)
  32.                     End If
  33.                 End If
  34.             Next i
  35.             r = r + 1
  36.         Next j
  37.         With .UsedRange
  38.             .HorizontalAlignment = xlCenter
  39.             .VerticalAlignment = xlCenter
  40.             .Borders.LineStyle = xlContinuous
  41.         End With
  42.     End With
  43.     Application.ScreenUpdating = True
  44. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2018-9-18 15:39 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
附件内容供参考,主要在于格式设置的。。。。

行数据转置列.zip

21.59 KB, 下载次数: 31

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-18 17:22 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-15 18:24 , Processed in 0.035528 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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