Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi @SushmaReddy ,
You can just add a DISTINCT wrapped outside FILTER().
Failed =
VAR _M =
SUMMARIZE (
T1,
T1[Model Number],
"MAX", MAX ( T1[Proc Time] ),
"Status",
CALCULATE (
MAX ( T1[Status] ),
FILTER ( T1, T1[Model Number] = EARLIER ( T1[Model Number] ) )
)
)
RETURN
COUNTROWS ( DISTINCT ( FILTER ( _M, [Status] = "Failed" ) ) ) + 0
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@SushmaReddy , Try like
Failed =
VAR _M = filter(SUMMARIZE(T1,T1[Model Number],
"MAX",MAX(T1[Proc Time]),
"Status",CALCULATE(MAX(T1[Status]),
FILTER(T1,T1[Model Number]=EARLIER(T1[Model Number])))),[Status]="Failed")
return
countx(summarize(_M, _M[Model Number]),[Model Number])
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |