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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
VAR MiTabla =
CALCULATETABLE(
ADDCOLUMNS(
SUMMARIZE(
Stage_DetalleNotaAlumno,
Stage_DetalleNotaAlumno[CodAlumnoPS]
),
"Nota1", [Nota_NA],
"FiltroNota", [Nota_NA] >= 12
)
)
VAR Resultado =
CALCULATE(
COUNTROWS( MiTabla ),
MiTabla[Nota1] >= 12
)
RETURN
Resultado
Solved! Go to Solution.
Thanks for the reply from @Greg_Deckler , please allow me to provide another insight:
Hi @JpTueros ,
You can try the following measure:
Measure =
var MiTabla=
SUMMARIZE(
ALL('Stage_DetalleNotaAlumno'),[CodAlumnoPS],"Note",[Nota_NA])
return
COUNTX(
FILTER(MiTabla,
[Note] >=12),[CodAlumnoPS])
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the reply from @Greg_Deckler , please allow me to provide another insight:
Hi @JpTueros ,
You can try the following measure:
Measure =
var MiTabla=
SUMMARIZE(
ALL('Stage_DetalleNotaAlumno'),[CodAlumnoPS],"Note",[Nota_NA])
return
COUNTX(
FILTER(MiTabla,
[Note] >=12),[CodAlumnoPS])
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello:
I have this table as a Variable, and then I want to count rows when Nota1 >= 12
Stage_DetalleNotaAlumno[CodAlumnoPS] | Nota1 |
1774687 | 22.6666667 |
1708851 | |
1734135 | |
1773797 | 29 |
1779116 | 26 |
1779256 | 28 |
1779264 | |
1779362 | |
1779390 | 20.6666667 |
1779428 | |
1779437 | 30.6666667 |
1777184 | |
1777307 | |
1777497 | 24 |
1777556 | 34 |
1777602 | 36 |
1777721 | |
1778995 | |
1779004 | 13 |
1776864 | 34 |
1777010 | |
1775297 | |
1776023 | 10 |
1776686 | |
1489753 | 16 |
1616732 | 20 |
@JpTueros Sorry, having trouble following, can you post sample data as text and expected output?
Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882
Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |