在 Excel 中,是否可以使用具有相同值的引用列折叠和移动多个单元格中的数据

在 Excel 中,是否可以使用具有相同值的引用列折叠和移动多个单元格中的数据

我有一张包含多行数据的工作表,需要折叠并向上移动这些信息,并使用单列作为关键参考点删除空空格。

例如,我有一张表,其中 A 列包含值 a 和 CB。B、C 和 D 列也有数据,但我的行只包含 2 列的数据,其他列为空。如果第一列匹配,我需要将行中的所有值向上移动以填充空白。将列向上移动后,最后一行可以有空数据,我只需将数据向上移动即可。

这是我想做的事情。我没有列出列和行标题

a  1      null      null
a  2      null      null
a null     1        null
a null     2        null    
a null    null        1
a null    null        2     
a null    null        3
B  1      null      null
B  2      null      null
B null     1        null
B null     2        null    
B null    null        1
B null    null        2     
B null    null        3
C  1      null      null
C  2      null      null
C null     1        null
C null     2        null    
C null     3        null
C null    null        1     
C null    null        2

我需要整合和移动数据,以便

a  1        1      1
a  2        2      2
a null   null     3
B  1        1      1
B  2        2      2
B  null   null     3
C  1        1      1
C  2        2      2
C  null    3     null

有人可以帮忙吗?

答案1

从...开始:

在此处输入图片描述

运行宏MAIN()

Dim DidSomething As Boolean

Sub MAIN()
    DidSomething = True
    While DidSomething
        Call KompactData
    Wend
    Call RowKiller
End Sub

Sub KompactData()
    Dim N As Long, i As Long
    Dim j As Long, v As Variant

    N = Cells(Rows.Count, "A").End(xlUp).Row
    DidSomething = False

    For j = 2 To 4
        For i = 2 To N
            v = Cells(i, j).Value
            If (v <> "") And (Cells(i - 1, j) = "") And (Cells(i, 1) = Cells(i - 1, 1)) Then
                Cells(i - 1, j) = v
                Cells(i, j).ClearContents
                DidSomething = True
            End If
        Next i
    Next j
End Sub


Sub RowKiller()
    Dim N As Long, i As Long, r As Range
    N = Cells(Rows.Count, "A").End(xlUp).Row
    With Application.WorksheetFunction
        For i = N To 1 Step -1
            Set r = Range(Cells(i, 1), Cells(i, 4))
            If .CountBlank(r) = 3 Then
                r.Delete Shift:=xlUp
            End If
        Next i
    End With
End Sub

将产生:

在此处输入图片描述

相关内容