Convert columns with multiple rows of data to rows with multiple columns in Excel.

前端 未结 4 1740
广开言路
广开言路 2021-01-24 19:26

I have data organised in cloumns with multiple rows which I need to convert to rows with multiple columns for data analysis. For example,

    ID  Date of entry          


        
4条回答
  •  梦毁少年i
    2021-01-24 19:46

    family | name | amount | table | fam1 | shlomi | 2 | 38 | fam2 | hila | 4 | 23 | .... fam1000 | avi | 1 | 15 | fam50 | ben | 2 | 68 |



    dror | 1 | 15 |

    and i want to make it

    family | name | amount | table | |fam50 | ben | 2 | 68 | ...
    fam1 | shlomi | 2 | 38 | ...
    fam2 | hila | 4 | 23 | ...
    ... ...
    fam49 | avi | 1 | 15 | |fam99 | dror | 1 | 15 | ...

提交回复
热议问题