Search code examples
excelretention

Arrange the excel retention data


I have a excel that contain retention information, and try to arrange them.

My Excel: enter image description here

And try to move row to left.Is there any basic method for thison excel?

Result: enter image description here


Solution

  • What about something like:

    enter image description here

    The formula I used in I2 translates to:

    =IFERROR(INDEX($A$1:$F$6,ROW(),COLUMN(B2)+ROW()-2),"")
    

    You can obviously apply this to your range.