Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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
Pedro | China | 63 |
Pedro | India | 268 |
Pedro | US | 239 |
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
Hi All,
My requirement is to show sum of amount after rows are combined .
input
Pedro | China | 63 |
Pedro | India | 268 |
Pedro | US | 239 |
output,
Pedro China,India,US 570
Please suggest the ways !!
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
USe
Calculate (sum(Column3), ALL(Table Name))
Thanks for reply though This is not working
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.