Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Kartic21
Helper I
Helper I

Aggregating the value of account after combining the multiple row into one. ?

Hi All,

Referring to this video https://www.youtube.com/watch?v=nJ7LzwiSwnw,

My requirement is to show sum of amount after rows are combined .

input 

 

PedroChina63
PedroIndia268
PedroUS239

 

output,

Pedro     China,India,US  570   

 

i am able to combine the rows after watching this link https://www.youtube.com/watch?v=nJ7LzwiSwnw,
but not sure how to aggregate the amount to get 570 as total amount

 

Can some suggest how to reach to the output

4 REPLIES 4
Kartic21
Helper I
Helper I

Hi All,

 

My requirement is to show sum of amount after rows are combined .

input 

 

PedroChina63
PedroIndia268
PedroUS239

 

output,

Pedro     China,India,US  570   

 


Please suggest the ways !!

Anonymous
Not applicable

Hi @Kartic21,

 

You can use below measure formulas to ignore filter effect on column 2 and Concatenate text:

Total Amount based on Column1=
CALCULATE ( SUM ( Table[Column3] ), ALLEXCEPT ( Table, Table[Column1] ) )

Concatenate Text =
CALCULATE (
CONCATENATEX ( VALUES ( Table[Column2] ), [Column2], "," ),
VALUES ( Table[Column1] )
)

 

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

USe

 

Calculate (sum(Column3), ALL(Table  Name))

Thanks for reply though This is not working

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.