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!View all the Fabric Data Days sessions on demand. View schedule
Hello,
Appreciate your time looking into this post. I am fairly new to Power BI and would really appreciate the input.
The Accumulator ID that I want is '30' and its corresponding value.
The measure would be called "CPH", I was wondering if its possible to filter out just the AccumulatorID no. 30 and its value in a single measure.
Table name is Accumulators
Thanks in advance!
Solved! Go to Solution.
CPH =
CALCULATE (
MAX ( 'Table'[Value] ),
FILTER ( 'Table', 'Table'[Accumulator ID] = 30 )
)
Replace MAX with MIN to find the minimum value from the Value column. Works?
CPH =
CALCULATE (
MAX ( 'Table'[Value] ),
FILTER ( 'Table', 'Table'[Accumulator ID] = 30 )
)
Replace MAX with MIN to find the minimum value from the Value column. Works?
How the output should look like?
Hey, thanks for taking the time.
It should just output the "Value" of the AccumulatorID no. 30
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!