The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Let's assume I have a table as below
And I want aggregate row as below
How can I do that, thanks
Solved! Go to Solution.
@sekinod , A measure
Total Sales = sum(Table[sales]) In visual with customer
or when drag sales in field you can choose aggregation as sum
Or new table in dax
table = summarize(Table, Table[customer]) , "Sales",sum(Table[sales]) )
@sekinod , A measure
Total Sales = sum(Table[sales]) In visual with customer
or when drag sales in field you can choose aggregation as sum
Or new table in dax
table = summarize(Table, Table[customer]) , "Sales",sum(Table[sales]) )
User | Count |
---|---|
11 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
10 | |
8 |