Forum Discussion

Progressive's avatar
Progressive
Regular Visitor
8 years ago
Solved

Combine and SUM multiple columns

Hi,   I created dashbord table and I would like to combine the column1 with commas and SUM the column2 based on column3. Is it possible?   I have a table like this, Column1,Column2,Column3 A...
  • Greg_Deckler's avatar
    8 years ago

    Create a meausre like this:

     

    Measure = CONCATENATEX(VALUES('Table'[Column1]),[Column1],",") 

    Create a table visualization with Column 3, Column 2 with default SUM and this measure.