This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hola expertos,
Necesito usar una condición de filtro en la que quiero mostrar los datos de la siguiente manera:
Product.ProductName ="Apple"
o
Geography.Region = "US".
Necesito crear un filtro para lo mismo en Power Bi, pero no puedo crear un filtro con "O".
¿Podría sugerirme cómo puedo superar este desafío?
Gracias y saludos,
Tushar Gaurav
Alta @तुषारगौरव
La solución @DataInsights ofrece es excelente y también puede considerar la siguiente solución.
Si desea controlar el filtro, puede crear una medida.
Measure =
IF (
OR (
SELECTEDVALUE ( 'Product'[ProductName] ) = "Apple",
SELECTEDVALUE ( 'Geography'[Region] ) = "US"
),
1,
0
)
A continuación, coloque la medida en el filtro visual y establezca la condición de que la medida sea igual a 1.
¡Saludos!
Yolo Zhu
Si esta publicación ayuda, considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
Pruebe esta medida:
OR Filter =
VAR vFilterTable =
FILTER (
CROSSJOIN ( ALL ( 'Product'[ProductName] ), ALL ( Geography[Region] ) ),
'Product'[ProductName] = "Apple"
|| Geography[Region] = "US"
)
VAR vResult =
CALCULATE ( SUM ( FactTable[Amount] ), KEEPFILTERS ( vFilterTable ) )
RETURN
vResult
https://www.sqlbi.com/articles/specifying-multiple-filter-conditions-in-calculate/
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.