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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
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.
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |