• 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.

How To Flip and Reverse The Data

Kenshin

Member
Hi meet you again in amazing forum, i have my question in my file attach

tq
 

Attachments

  • example.xlsx
    10.2 KB · Views: 10
@Kenshin

Interesting question. Assuming your raw data is named data
You can use below formula

=IFERROR(INDEX(data, 6-ROWS($A$1:$A1),COUNTA(INDEX(data, 6-ROWS($A$1:$A1),))-COLUMNS($A$1:A$1)+1),"")

Change 6 to number of rows in your data + 1 (or use formula like counta)

Update: Just ignore the 0s or change them to blanks on display using format code 0;0;;
 
Maybe,

In A8 copy across and down :

=IFERROR(INDEX($A$1:$E$5,6-ROWS($1:1),7-COLUMNS($A:A)-ROWS($1:1)),"")

Regards
 
Last edited:
I have another request for another lay out table result, i try modify you formula but the end is fail
 

Attachments

  • Example-1.xlsx
    10.5 KB · Views: 7
A8:
=OFFSET(A$6,-ROWS($A$8:A8),0)
Copy across and down
Then apply a custom number format of #;;;
 
Back
Top