The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have data structured as such:
An Account can have multiple records in the same category. In such cases, their Revenue will be listed as the same value for each record. I need a MEASURE that will only sum the Revenue value ONE time per Account-Category combination. So in my example, Account 108392299 has two (2) records for the New category. Each record pulls in his revenue of $201.35. My resulting measure SummarizedRevenue, should only count the $201.35 ONE time because it is the same Account-Category combination. How can I construct such a measure?
Solved! Go to Solution.
If possible, i'd recommend going back to PowerQuery and just removing duplicate rows (unless there's a particular reason you need them?)
Otherwise, try a measure like:
Amt per Group =
var tempTable = SUMMARIZE('Table', 'Table'[Account], 'Table'[Catg], 'Table'[Amt])
return SUMX(tempTable, 'Table'[Amt])
hi @domtrump ,
try to plot with a measure like:
Sum =
SUMX(
SUMMARIZE(data, data[Account], data[Category], data[Revenue]),
data[Revenue]
)
it worked like:
hi @domtrump ,
try to plot with a measure like:
Sum =
SUMX(
SUMMARIZE(data, data[Account], data[Category], data[Revenue]),
data[Revenue]
)
it worked like:
If possible, i'd recommend going back to PowerQuery and just removing duplicate rows (unless there's a particular reason you need them?)
Otherwise, try a measure like:
Amt per Group =
var tempTable = SUMMARIZE('Table', 'Table'[Account], 'Table'[Catg], 'Table'[Amt])
return SUMX(tempTable, 'Table'[Amt])
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |