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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello, I want to count the number of positive lines of the measure [measure1] -[measure2]
thank
Solved! Go to Solution.
Hi @askoflor ,
Here I create a sample to have a test.
Measures:
Measure 1 = SUM('Table'[Value1])
Measure 2 = SUM('Table'[Value2])
Measure 1 - Measure 2 = [Measure 1] - [Measure 2]
Count Positive = COUNTAX(FILTER(VALUES('Table'[Category]),[Measure 1 - Measure 2] >0),[Category])
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @askoflor ,
Here I create a sample to have a test.
Measures:
Measure 1 = SUM('Table'[Value1])
Measure 2 = SUM('Table'[Value2])
Measure 1 - Measure 2 = [Measure 1] - [Measure 2]
Count Positive = COUNTAX(FILTER(VALUES('Table'[Category]),[Measure 1 - Measure 2] >0),[Category])
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.