Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi all, I'm trying to add the Max of Revenue for each Customer ID together in a measure. For the data below, I'd like to add 60 (max for customer 1) and 110 (max for customer 2) to get 170.
Would anyone know how to do this? Thank you!
Customer ID | Customer Name | Revenue |
1 | Microsoft | 50 |
1 | Microsoft | 60 |
2 | Microsoft | 100 |
2 | Microsoft | 110 |
Solved! Go to Solution.
Hi @Anonymous
try a measure
Measure = SUMX(
SUMMARIZE('Table', 'Table'[Customer ID], "MaxRevenue", MAX('Table'[Revenue])),
[MaxRevenue]
)
Hi @Anonymous
try a measure
Measure = SUMX(
SUMMARIZE('Table', 'Table'[Customer ID], "MaxRevenue", MAX('Table'[Revenue])),
[MaxRevenue]
)
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
107 | |
106 | |
91 | |
67 |
User | Count |
---|---|
162 | |
133 | |
132 | |
93 | |
91 |