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.
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.
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 |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |