Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table[Col1]="Completed"))) -- > Works (Para una columna)
pero necesito filtrar y combinar con otras 3 opciones de otras 2 columnas
Por favor, ¿puedo saber cómo?
Pero tengo Col1 - > 2 filtros Y (Tabla[COL1] ="Sí", Tabla[COL1] ="No estoy seguro")
Col2 -> AND(Table[Col2]="Yes", Tabla[Col2]<>"Not Sure", Tabla[Col2]="Estacionado")
Col3 -> AND(Table[Col3]="No", Tabla[Col3]<>"Sin pedido", Tabla[Col3]="Nueva York")
Por favor, persíme saber cómo combinar todo lo anterior para crear una medida a utilizar.
Gracias a una tonelada
Solved! Go to Solution.
@acerNZ ,
Dos valores tbale no pueden ser y , necesitan Or o IN
ejemplo
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table[Col1] en {"Yes", "Not Sure"})))
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table[Col1] en {"Yes", "Not Sure"})))
1 o 2
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table,(Table[Col1] en {"Yes", "Not Sure"}) || (Tabla[Col2]="Sí" || Tabla[Col2]<>"No estoy seguro" || Tabla[Col2]="Estacionado") ))
1 y 2
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table[Col1] en {"Yes", "Not Sure"}) & (Table[Col2]="Yes" || Tabla[Col2]<>"No estoy seguro" || Tabla[Col2]="Estacionado") ))
añadir de esta manera
@acerNZ ,
Dos valores tbale no pueden ser y , necesitan Or o IN
ejemplo
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table[Col1] en {"Yes", "Not Sure"})))
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table[Col1] en {"Yes", "Not Sure"})))
1 o 2
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table,(Table[Col1] en {"Yes", "Not Sure"}) || (Tabla[Col2]="Sí" || Tabla[Col2]<>"No estoy seguro" || Tabla[Col2]="Estacionado") ))
1 y 2
CombineMeasure = CALCULATE(COUNT(Table[COL1]),FILTER(Table,(Table[Col1] en {"Yes", "Not Sure"}) & (Table[Col2]="Yes" || Tabla[Col2]<>"No estoy seguro" || Tabla[Col2]="Estacionado") ))
añadir de esta manera
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
2 | |
2 | |
1 | |
1 | |
1 |