繁体   English   中英

如何在距离我所在的单元格X列的单元格中写入(X是在另一个单元格中定义的值)

[英]How can I write in a cell that is X number of column away from the cell I am on (X is a value defined in another cell)

我有一组物品被归类为A/B/C 例如:

项目和类别:

在此输入图像描述

我想将A / B / C作为列,但是将每个项目放在一起。 例如:

每个项目作为列:

在此输入图像描述

如果每个类别下可以有任意数量的项目,我该怎么办?

我认为宏可以实现这一点,但我希望尽可能避免从宏中清除。

修改代码并尝试:

Option Explicit

Sub TEST()

    Dim LastRow As Long, LastColumn As Long, LastColumn2 As Long, i As Long, y As Long
    Dim arr As Variant

    With ThisWorkbook.Worksheets("Sheet1")

        arr = Array("A", "B", "C") '<- Create an array with the desirable Items

        For i = LBound(arr) To UBound(arr) '<- Loop array
            'Find Last column of row 12 in order to import Titles
            LastColumn = .Cells(12, .Columns.Count).End(xlToLeft).Column

            If LastColumn = 1 And .Cells(11, LastColumn).Value = "" Then
                .Cells(11, LastColumn).Value = arr(i)
            Else
                .Cells(11, LastColumn + 1).Value = arr(i)
            End If
            'Find Last row of column B in order to create the loop range
            LastRow = .Cells(.Rows.Count, "B").End(xlUp).Row
            'Loop column B from 1 to last row of column B
            For y = 1 To LastRow
                'Check if looping value is the same with array value
                If .Range("B" & y).Value = arr(i) Then
                    'Find Last column of row 12 in order to import values
                    LastColumn2 = .Cells(12, .Columns.Count).End(xlToLeft).Column

                    If LastColumn2 = 1 And .Cells(12, LastColumn2).Value = "" Then
                        .Cells(12, 1).Value = .Range("A" & y).Value
                    Else
                        .Cells(12, LastColumn2 + 1).Value = .Range("A" & y).Value
                    End If

                End If

            Next y

        Next i

    End With

End Sub

结果:

在此输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM