EXCEL VBA将多列转换为多行,各列之间留有间隙

时间:2018-06-22 05:12:13

标签: excel vba transpose unpivot

我有一个大的数据集要转置,下面的代码在正确的输出中确实做到了这一点,但是列数太多。当前,该代码将连续从一列读取到另一列,直到全部读取为止。我想更改此设置,以便选择前几列数据,跳过3列,然后继续执行脚本。

My Dataset:
UFI   CAT1    CAT2    CAT3    CAT4   CAT5   CAT6
RN1   Skip1   Skip2   Skip3   Copy1  Copy2  Copy3
RN2   Skip1   Skip2   Skip3   Copy1  Copy2  Copy3

Desired Output:
UFI    COLUMN   VALUES
RN1    CAT5     Copy1
RN1    CAT6     Copy2
RN1    CAT7     Copy3
RN2    CAT5     Copy1
RN2    CAT6     Copy2
RN2    CAT7     Copy3

这是下面的VBA代码:

Option Explicit

Sub Tester()

Dim p

'get the unpivoted data as a 2-D array
p = UnPivotData(Sheets("Sheet1").Range("A1").CurrentRegion, _
                3, True, False)

Dim r As Long, c As Long
For r = 1 To UBound(p, 1)

    For c = 1 To UBound(p, 2)
        Sheets("Sheet2").Cells(r, c).Value = p(r, c)
    Next c

Next r

End Sub

Function UnPivotData(rngSrc As Range, fixedCols As Long, _
                 Optional AddCategoryColumn As Boolean = True, _
                 Optional IncludeBlanks As Boolean = True)

Dim nR As Long, nC As Long, data, dOut()
Dim r As Long, c As Long, rOut As Long, cOut As Long, cat As Long
Dim outRows As Long, outCols As Long

data = rngSrc.Value                          'get the whole table as a 2-D 
array
nR = UBound(data, 1)                         'how many rows
nC = UBound(data, 2)                         'how many cols

'calculate the size of the final unpivoted table
outRows = nR * (nC - fixedCols)
outCols = fixedCols + IIf(AddCategoryColumn, 2, 1)

'resize the output array
ReDim dOut(1 To outRows, 1 To outCols)

'populate the header row
For c = 1 To fixedCols
    dOut(1, c) = data(1, c)
Next c
If AddCategoryColumn Then
    dOut(1, fixedCols + 1) = "COLUMN"
    dOut(1, fixedCols + 2) = "VALUES"
Else
    dOut(1, fixedCols + 1) = "VALUES"
End If


'populate the data
rOut = 1
For r = 2 To nR
    For cat = fixedCols + 1 To nC


        If IncludeBlanks Or Len(data(r, cat)) > 0 Then
            rOut = rOut + 1
            'Fixed columns...
            For c = 1 To fixedCols
                dOut(rOut, c) = data(r, c)
            Next c
            'populate unpivoted values
            If AddCategoryColumn Then
                dOut(rOut, fixedCols + 1) = data(1, cat)
                dOut(rOut, fixedCols + 2) = data(r, cat)
            Else
                dOut(rOut, fixedCols + 1) = data(r, cat)
            End If
        End If

    Next cat
Next r

UnPivotData = dOut
End Function

2 个答案:

答案 0 :(得分:0)

多亏了Tims的帮助,我才得以解决。

为此,我将添加一个新的隐藏工作表,而不是VBA代码将定位到该隐藏工作表,该隐藏工作表将删除所有跳过的列的数据集,以允许VBA在隐藏工作表的同时正常读取在我的工作表中进行所有操作。

所需的输出将是相同的,而无需编辑VBA代码以使列成为例外

答案 1 :(得分:0)

仅出于此目的:

Sub Skip_and_Transpose()

Dim Ws1 As Worksheet: Set Ws1 = Sheets(1)
Dim Ws2 As Worksheet: Set Ws2 = Sheets(2)
Dim P1 As Range: Set P1 = Ws1.UsedRange
T1 = P1
Dim T2()
a = 1

ReDim Preserve T2(1 To 3, 1 To a)
T2(1, a) = "UFI"
T2(2, a) = "COLUMN"
T2(3, a) = "VALUES"
a = a + 1

For i = 2 To UBound(T1)
    For j = 5 To UBound(T1, 2)
        ReDim Preserve T2(1 To 3, 1 To a)
        T2(1, a) = T1(i, 1)
        T2(2, a) = T1(1, j)
        T2(3, a) = T1(i, j)
        a = a + 1
    Next j
Next i

Ws2.Range("A1").Resize(UBound(T2, 2), UBound(T2)) = Application.Transpose(T2)

End Sub