Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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])
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
9 | |
7 | |
6 | |
5 |
User | Count |
---|---|
20 | |
11 | |
10 | |
9 | |
6 |