Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I'm trying to sum the values of a column generated from a measure.
the totalBycodeAlpha column is the measure that I'm trying to create, in it I'm trying to sum the values of the value_calculated column (measure), grouped by the code-alpha column and display these values. But it turns out it's a lot harder than I thought...
does anyone know a way to solve this
link of project:
https://drive.google.com/file/d/14yUk7y-UfOY0f21ySWCqsGuctdVJMARM/view?usp=sharing
how i am trying to apply:
table with dataset
Solved! Go to Solution.
@jonassantos , You need something like
CALCULATE(
SUMX('base calculate',[maxValueOfProducts]),
FILTER(ALLSELECTED('base calculate'),
'base calculate'[code-alpha]=MAX('base calculate'[code-alpha]))
)
or refer
Latest
https://amitchandak.medium.com/power-bi-get-the-last-latest-value-of-a-category-d0cf2fcf92d0
thanks, realy very good the result.
@jonassantos , You need something like
CALCULATE(
SUMX('base calculate',[maxValueOfProducts]),
FILTER(ALLSELECTED('base calculate'),
'base calculate'[code-alpha]=MAX('base calculate'[code-alpha]))
)
or refer
Latest
https://amitchandak.medium.com/power-bi-get-the-last-latest-value-of-a-category-d0cf2fcf92d0
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 32 | |
| 19 | |
| 12 | |
| 10 |