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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Medir con varias restricciones, 'ANDS' y 'ORS'

Hola a todos 🙂

Espero que alguien pueda ayudarme con esto.

Necesito una medida que suma valores de columnas dependiendo de las cadenas de otra.

Un ejemplo sencillo:

measure-CALCULATE(SUM(Table[Column]); Tabla[0ther Column] - "Alguna cadena")

Necesito esta medida pero con más restricciones, como:

Primero necesito que la columna tenga esta cadena: "String X"

Entonces

Necesito que la columna tenga estos dos: "String Y" Y "String Z"

Soy consciente de que esto puede ser un poco confuso, hice todo lo posible para explicarlo.

Gracias por su ayuda

Alena

7 REPLIES 7
DataVitalizer
Super User
Super User

Hola @alenashkel

Tienes que usar SUMX en su lugar

SUMX(FILTER(your_table ,OR(Column_name-"String Y",Column_name-"String Z")),Column_values)
¿Funciona? Márquelo como solución
Anonymous
Not applicable

@othy_bi Gracias por su respuesta 🙂

Pero, ¿qué hay de "String X" que tiene que venir antes que los otros dos?

@alenashkel

En la cláusula OR puedes poner tantas restricciones como quieras

parry2k
Super User
Super User

@alenashkel seguramente es confuso, mejor es poner los datos de muestra y la salida esperada. Lea este post para obtener su respuesta rápidamente.

https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

camargos88
Community Champion
Community Champion

Hola @alenashkel ,

¿Puede dar algunos datos como ejemplo?

Ricardo



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Anonymous
Not applicable

@camargos88 @parry2k Sí, por supuesto:

Lo que necesito es la suma de la columna "PageViews" cuando ocurren las siguientes condiciones. En primer lugar, debe aparecer "Banana". Entonces, y sólo después de "Banana" necesito tener "Apple" y "Peach

Por lo tanto, a partir de los datos a continuación, la medida debe devolver 29 (7+10+12):

PageViewsPageName
2BananaApple
3OrangeBanana
4BananaPineappleApple
7OrangeBananaApplePeach
10BananaOrangeAppleOrangePeach
12BananaOrangePineappleApplePeach
78manzana
45Plátano
98X
26Y
87Z

Gracias por su ayuda

Hola @alenashkel ,

Pruébalo:

Medida: SUMX('Tabla';
IF(
SEARCH("Banana"; 'Table'[PageName];; 2) < SEARCH("Apple"; 'Table'[PageName];; 1) &&
BUSCAR("Apple"; 'Table'[PageName];; 2) < SEARCH("Peach"; 'Table'[PageName];; 1); 'Table'[PageViews]; 0))
Ricardo


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Kudoed Authors