UNPIVOTHEADERS

=UNPIVOTHEADERS(tableall)

tableall
the full, complete with headers

UNPIVOTHEADERS function replicates the Power Query function "unpivot other columns", from the first column, where row labels expand out with their column values.

jaeiow

Board Regular
Joined
Jun 12, 2022
Messages
139
Office Version
  1. 365
Platform
  1. Windows
UNPIVOTHEADERS function replicates the Power Query function "unpivot other columns", from the first column, where row labels expand out with their column values.
Functions in this formula: RBYROW, CBYCOL, repeatxtimes (below)
Excel Formula:
=LAMBDA(values,num_repeat,
DROP(REDUCE( "",
        SEQUENCE(ROWS(values)),
        LAMBDA(a, v, VSTACK(a, IF(SEQUENCE(INDEX(num_repeat, v, 1)), INDEX(values, v))))),1)
)

Excel Formula:
=LAMBDA(tableall,
LET(
    headers, DROP(CHOOSEROWS(tableall, 1), , 1),
    cols, COLUMNS(headers),
    rowlabels, DROP(CHOOSECOLS(tableall, 1), 1),
    r0s, ROWS(rowlabels),
    tabledata, DROP(tableall, 1, 1),
    SORTBY(
        WRAPCOLS(
            TOROW(
                IFNA(
                    VSTACK(
                        CBYCOL(headers, LAMBDA(x, repeatXtimes(x, r0s))),
                        SORT(rowlabels),
                        SORTBY(tabledata, rowlabels)
                    ),
                    SORT(EXPAND(rowlabels, r0s * 2, , ""))
                )
            ),
            cols * r0s
        ),
        RBYROW(rowlabels, LAMBDA(x, repeatXtimes(x, cols)))
    )
)
)
 
Upvote 0
I think the math functions like quotient could be used to code this and avoid an issue. The issue I'm referencing is re-sort at the end. It doesn't work the way I did it. It is impossible, though it would be nice to re-sort against the original expanded row labels. So, for now, amended code removes the re-sort, and add the ability to apply a cosmetic shortening of the row labels to be one row for each.
Excel Formula:
=LAMBDA(tableall,[cosmetic],
    LET(
    headers, DROP(
        CHOOSEROWS(
        tableall,1)
        ,,1),
    cols, COLUMNS(headers),
    rowlabels, DROP(
        CHOOSECOLS(
        tableall,1)
        ,1),
    r0s, ROWS(rowlabels),
    WRAPCOLS(
    IFNA(
    TOROW(
        IFNA(
        VSTACK(
            CBYCOL(
                headers,LAMBDA(x,repeatXtimes(x,r0s))),
            SORT(
                rowlabels),
            SORTBY(
                DROP(
                    tableall,1,1),rowlabels)),
            SORT(
                EXPAND(
                rowlabels,IF(
                    OR(
                    ISOMITTED(
                        cosmetic),NOT(
                        cosmetic)),r0s *2,r0s),,0)))),""
        ),
        cols * r0s
    )
    )
)
 
And here is a/the solution that restores the original sort.
Excel Formula:
=LAMBDA(tableall,[cosmetic],
    LET(
        headers, DROP(CHOOSEROWS(tableall, 1), , 1),
        cols, COLUMNS(headers),
        rowlabels, DROP(CHOOSECOLS(tableall, 1), 1),
        r0s, ROWS(rowlabels),
        WRAPCOLS(
            TOROW(
                SORTBY(
                    IFNA(
                        VSTACK(
                            SORT(rowlabels),
                            CBYCOL(headers, LAMBDA(x, repeatXtimes(x, r0s))),
                            SORTBY(DROP(tableall, 1, 1), rowlabels)
                        ),
                        SORT(
                            EXPAND(
                                rowlabels,
                                IF(OR(ISOMITTED(cosmetic), NOT(cosmetic)), r0s * 2, r0s),
                                ,
                                ""
                            )
                        )
                    ),
                    TOCOL(
                        SORTBY(
                            RBYROW(SEQUENCE(r0s), LAMBDA(x, HSTACK(x, x + r0s, x + r0s * 2))),
                            rowlabels
                        ),
                        ,
                        TRUE
                    )
                )
            ),
            cols * r0s
        )
    )
)
 

Forum statistics

Threads
1,215,329
Messages
6,124,301
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top