ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] Excel矩阵的行列转置问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-7-12 10:27 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
yuzhj231 发表于 2018-7-12 10:18
已经深刻领悟到此代码内涵,有个问题,是否加一个等值判断,调出和调入相同的不进行拆分、

不明白你说的,能不能举个例子?

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-12 14:33 | 显示全部楼层
lsdongjh 发表于 2018-7-12 10:27
不明白你说的,能不能举个例子?


您好,看一下如下两个图,第一行:调入万达1件,保定调出1件,最后结果是保定调给万达1;唐爱调入5件,北国调出5件,最后结果是北国调给唐爱5;目前的宏实现效果没有达到这样的结果,在实际业务中会增加业务成本。

用宏前

用宏前
      

用宏后

用宏后

TA的精华主题

TA的得分主题

发表于 2018-7-12 21:41 来自手机 | 显示全部楼层
重新看一下10楼和12楼再说话,勿忘初心

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-14 14:13 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
lsdongjh 发表于 2018-7-12 21:41
重新看一下10楼和12楼再说话,勿忘初心

您写的这个没有问题,我想了一下,可以分两步实现我说的那种,第一步:先将一行中相同进出的店遍历出来写在数组1中,原数组中对应单元格设为空,第二步就是遍历原数组就是您写的代码。

TA的精华主题

TA的得分主题

发表于 2018-7-15 08:35 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-2 17:32 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Sub Test()
    Dim arrSource As Variant, arrTemp As Variant, arrResult As Variant, arrSource1  As Variant
    Dim lngRows As Long, lngCols As Long
    Dim lngR As Long, lngC As Long
    Dim lngRow As Long, lngCol As Long
    Dim intIN As Integer, intOut As Integer
    Dim lngIndex As Long
   
    arrSource = Sheet1.Range("A1").CurrentRegion
        arrSource1 = Sheet1.Range("A1").CurrentRegion
    lngRows = UBound(arrSource)
    lngCols = UBound(arrSource, 2)

    lngIndex = 1
    ReDim arrResult(1 To 4, 1 To lngIndex)
    arrResult(1, 1) = "商品编号"
    arrResult(2, 1) = "调出门店"
    arrResult(3, 1) = "调入门店"
    arrResult(4, 1) = "调入数量"



   
'
'For nub2 = 2 To lngRows
'    For nub1 = 2 To lngCols
'      nub = arrSource(nub2, nub1) + nub
'     Next
'     If nub <> 0 Then
'     MsgBox arrSource(nub2, 1) & "调拨失衡"
'     GoTo xx
'
'     End If
'Next

   
    For lngRow = 2 To lngRows
        ReDim arrTemp(1 To lngCols - 2, 1 To 5)
        intIN = 1
        intOut = 1
        For lngCol = 2 To lngCols
            If arrSource(lngRow, lngCol) < 0 Then
                arrTemp(intOut, 1) = arrSource(lngRow, 1)
                arrTemp(intOut, 2) = arrSource(1, lngCol)
                arrTemp(intOut, 3) = arrSource(lngRow, lngCol)
                arrSource(lngRow, lngCol) = 0
                intOut = intOut + 1
               
               
          For i = 2 To lngCols
         
           If arrSource(lngRow, i) > 0 And arrSource(lngRow, i) = arrTemp(intOut - 1, 3) * -1 Then
                arrTemp(intIN, 1) = arrSource(lngRow, 1)
                arrTemp(intIN, 4) = arrSource(1, i)
                arrTemp(intIN, 5) = arrSource(lngRow, i)
                arrSource(lngRow, i) = 0
                intIN = intIN + 1
                GoTo xxq
             End If
               
            Next
xxq:

          ElseIf arrSource(lngRow, lngCol) > 0 Then
                arrTemp(intIN, 1) = arrSource(lngRow, 1)
                arrTemp(intIN, 4) = arrSource(1, lngCol)
                arrTemp(intIN, 5) = arrSource(lngRow, lngCol)
                arrSource(lngRow, lngCol) = 0
                intIN = intIN + 1
             For j = 2 To lngCols
                If arrSource(lngRow, j) < 0 And arrSource(lngRow, j) = arrTemp(intIN - 1, 5) * -1 Then
                arrTemp(intOut, 1) = arrSource(lngRow, 1)
                arrTemp(intOut, 2) = arrSource(1, j)
                arrTemp(intOut, 3) = arrSource(lngRow, j)
                arrSource(lngRow, j) = 0
                intOut = intOut + 1
                GoTo xxx
             End If
               
                Next
xxx:
               
               
            End If
        Next
        
        
        For lngR = 1 To intOut - 1
            For lngC = 1 To intIN - 1
                If arrTemp(lngC, 5) > 0 Then
                    lngIndex = lngIndex + 1
                    ReDim Preserve arrResult(1 To 4, 1 To lngIndex)
                    arrResult(1, lngIndex) = arrTemp(lngR, 1)
                    arrResult(2, lngIndex) = arrTemp(lngR, 2)
                    arrResult(3, lngIndex) = arrTemp(lngC, 4)
                    If (arrTemp(lngR, 3) + arrTemp(lngC, 5)) = 0 Then
                        arrResult(4, lngIndex) = arrTemp(lngR, 3) * -1
                        arrTemp(lngR, 3) = 0
                        arrTemp(lngC, 5) = 0
                      ElseIf (arrTemp(lngR, 3) + arrTemp(lngC, 5)) > 0 Then
                    
                         arrResult(4, lngIndex) = arrTemp(lngR, 3) * -1
                        arrTemp(lngR, 3) = 0
                        
                        arrTemp(lngC, 5) = arrTemp(lngR, 3) + arrTemp(lngC, 5)
                    ElseIf (arrTemp(lngR, 3) + arrTemp(lngC, 5)) < 0 Then
                    
                        arrResult(4, lngIndex) = arrTemp(lngC, 5)
                        arrTemp(lngR, 3) = arrTemp(lngR, 3) + arrTemp(lngC, 5)
                        arrTemp(lngC, 5) = 0
                    End If
                End If
            Next
        Next
    Next
   
    arrResult = Application.WorksheetFunction.Transpose(arrResult)
    Sheet2.UsedRange.ClearContents
    Sheet2.Range("K1").Resize(lngIndex, 4) = arrResult
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-4 16:25 | 显示全部楼层
lsdongjh 发表于 2018-7-12 21:41
重新看一下10楼和12楼再说话,勿忘初心

在您的框架内实现了我说的那种,代码请看26楼
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-11 14:13 , Processed in 0.024746 second(s), 7 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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