Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Syndicate_Admin
Administrator
Administrator

Filtrar varias columnas para varias opciones de filtro para crear una medida

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

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

@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

View solution in original post

1 REPLY 1
Syndicate_Admin
Administrator
Administrator

@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

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors