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
Hello - I am in powerbi desktop, working with a set of data where I need to sum the values of SKU by selecting the max across a few categories - export and account.
Example
account | export | sku
x | 123 | 1000
x | 124 | 1000
x | 125 | 1000
x | 126 | 1500
y | 459 | 1000
y | 458 | 1000
y | 457 | 1000
y | 456 | 2000
I am looking for a result of 3500 from above (sum of the max of account and export)
How can I do this?
Solved! Go to Solution.
Hi,
Write these measures
Measure = max(Data[sku])
Measure 2 = SUMX(VALUES(Data[account]),[Measure])
Hope this helps.
Hi,
Write these measures
Measure = max(Data[sku])
Measure 2 = SUMX(VALUES(Data[account]),[Measure])
Hope this helps.
User | Count |
---|---|
64 | |
55 | |
46 | |
31 | |
31 |
User | Count |
---|---|
84 | |
74 | |
49 | |
48 | |
41 |