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.
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.