Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |