Merging multiple rows into single row

Comments

1 comment

  • Gido

    Hi Swethha,

    Based on your example you may use the following approach. 

    Lets assume your example data is on a Worksheet called InputData.
    Create a new Worksheet called TransposedData and group by ID first.
    Group, concatenate and order by TIME after.

    GROUPBY(#InputData!ID)
    GROUPCONCAT(#InputData!TIME;#InputData!TIME)

    Follow up with all other columns.

    GROUPCONCAT(#InputData!DAY;#InputData!TIME)
    GROUPCONCAT(#InputData!URL_NAME;#InputData!TIME)
    GROUPCONCAT(#InputData!VALUE;#InputData!TIME)
    GROUPCONCAT(#InputData!TIME_SPEND;#InputData!TIME)

    You can use List Functions now to find out how many elements are there in the list or access the elements by index. 

    0
    Comment actions Permalink

Please sign in to leave a comment.