Forum Discussion

gb00th's avatar
gb00th
New Member
4 years ago
Solved

Table Manipulation

I have a table of data that comprises ID Response Label 1 Location UK 2 Location Germany 3 Location France 1 Project A 2 Project B 3 Project C   How can I eit...
  • SpartaBI's avatar
    4 years ago

    gb00th 

    Table 2 = 
    ADDCOLUMNS(
        VALUES('Table'[ID]),
        "Location", CONCATENATEX(FILTER('Table', 'Table'[ID] = EARLIER('Table'[ID]) && 'Table'[Response] = "Location"),'Table'[Label]),
        "Project", CONCATENATEX(FILTER('Table', 'Table'[ID] = EARLIER('Table'[ID]) && 'Table'[Response] = "Project"),'Table'[Label])
    ) 


    In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos ๐Ÿ™‚