Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I am trying to create a measure that aggregate the sla_ttr_passed =1 from a binary category.
It is possible to do that?
Many thanks
Rocio
Solved! Go to Solution.
Hi @Anonymous ,
You also could create measure by the following formula:
count1 = COUNTX(FILTER('Table',[sla_ttr_passed]=1),[sla_ttr_passed])
or
count2 = CALCULATE(COUNT([sla_ttr_passed]),'Table'[sla_ttr_passed]=1)
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You also could create measure by the following formula:
count1 = COUNTX(FILTER('Table',[sla_ttr_passed]=1),[sla_ttr_passed])
or
count2 = CALCULATE(COUNT([sla_ttr_passed]),'Table'[sla_ttr_passed]=1)
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Check if one the three measure can work
countrows(filter(Table,[sla_ttr_passed]))
or
countrows(filter(Table,[sla_ttr_passed] =1))
or
countrows(filter(Table,[sla_ttr_passed] =true() ))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.