• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Transpose Table

Code:
=IFERROR(
    OFFSET(
        $A$5,
        SMALL(
            IF(($B$6:$D$9<>"")*(COLUMN($B$6:$D$9)=MATCH(G6,$B$5:$D$5,0)+1),
                ROW($B$6:$D$9)-5
            ),
            COUNTIF($G$6:G6,G6)
        ),
        MATCH(G6,$B$5:$D$5,0)
    ),
"")
 
Since you're now using a version of Excel at least version 2016 then you can use Power Query to do this. See table at cell J14 of the attached. Should you change the table at A5 you'll need to refresh the table at J14 by right-clicking somewhere within it and choosing Refresh.
 

Attachments

Since you're now using a version of Excel at least version 2016 then you can use Power Query to do this. See table at cell J14 of the attached. Should you change the table at A5 you'll need to refresh the table at J14 by right-clicking somewhere within it and choosing Refresh.
Thanks p45Cal .
 
Back
Top