Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 10 | |
| 5 | |
| 5 |