Forum Discussion

engrchris's avatar
engrchris
Frequent Visitor
4 years ago
Solved

PowerBI Matrix to Combine Rows with the Same Value

I want to make my Rows combine all same values. What I am getting now is its creating a hierarchy.   To combine Calc 1 and Calc2   
  • v-zhangti's avatar
    v-zhangti
    4 years ago

    Hi, engrchris 

     

    You can try the following methods.

    Table 2 = 
    Var table1=SUMMARIZE('Table','Table'[ISO],'Table'[Date],'Table'[Calc 1])
    Var table2=SUMMARIZE('Table','Table'[ISO],'Table'[Date],'Table'[Calc 2])
    Var table3=SUMMARIZE('Table','Table'[ISO],'Table'[Date],'Table'[Calc 3])
    Return
    UNION(table1,table2,table3)

    Is this the result you expect?

     

    Best Regards,

    Community Support Team _Charlotte

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.