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

filtrar una tabla de resumen

Hola a todos, estoy tratando de filtrar mi tabla RESUMEN a sólo donde el estado del contrato - "Activo" en la tabla1

Esta es mi tabla SUMMARIZE actual:

Tabla de resumen: SUMMARIZE('table1, 'table1'[ID], "Profiles", MAX('table1'[Profiles]), "Additional Storage", SUM('table1'[Additional Storage]))

Quiero agregar a esta fórmula para resumir sólo los valores en los que el estado del contrato es "Activo" en la tabla original (tabla1) - ¿cómo haría esto?

1 ACCEPTED SOLUTION
v-eqin-msft
Community Support
Community Support

Hola @jack421 ,

Según mi opinión, desea filtrar una tabla resumida cuando el estado del contrato es igual a "Activo", ¿verdad?

Puede usar la siguiente fórmula:

Summarize Table =
CALCULATETABLE (
    SUMMARIZE (
        'Table1',
        'Table1'[ID],
        "Profiles", MAX ( 'Table1'[Profiles] ),
        "Additional Storage", SUM ( 'Table1'[Additional Storage] )
    ),
    'Table1'[Contract Status ] = "Active"
)

Mi visualización tiene este aspecto:

8.13.2.PNG

¿Es el resultado lo que quieres? Si no es así, cargue algunas muestras de datos y la salida esperada.

Por favor, enmascarar los datos confidenciales antes de cargar.

Saludos

Eyelyn Qin

View solution in original post

3 REPLIES 3
v-eqin-msft
Community Support
Community Support

Hola @jack421 ,

Según mi opinión, desea filtrar una tabla resumida cuando el estado del contrato es igual a "Activo", ¿verdad?

Puede usar la siguiente fórmula:

Summarize Table =
CALCULATETABLE (
    SUMMARIZE (
        'Table1',
        'Table1'[ID],
        "Profiles", MAX ( 'Table1'[Profiles] ),
        "Additional Storage", SUM ( 'Table1'[Additional Storage] )
    ),
    'Table1'[Contract Status ] = "Active"
)

Mi visualización tiene este aspecto:

8.13.2.PNG

¿Es el resultado lo que quieres? Si no es así, cargue algunas muestras de datos y la salida esperada.

Por favor, enmascarar los datos confidenciales antes de cargar.

Saludos

Eyelyn Qin

pranit828
Community Champion
Community Champion

Hola @jack421

Yo escribiría :

Tabla de resumen : RESUMEN(

FILTRO('table1', NOT('table1'[Estado del contrato] á "Activo"))

, 'table1'[ID], "Profiles", MAX('table1'[Profiles]), "Additional Storage", SUM('table1'[Additional Storage]))

¿He respondido a tu pregunta? ¡Marca mi puesto como una solución! Apreciamos su Kudos!!

saludos
Pranit





PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

@jack421 probar esta expresión

Summarize Table = 
SUMMARIZE(
FILTER( 'table1', 'table'[Contract Status]="Acitve" ),
'table1'[ID], 
"Profiles", MAX('table1'[Profiles]), 
"Additional Storage", SUM('table1'[Additional Storage])
)

Me gustaría elogiossi mi solución ayudara.👉Si puedes pasar tiempo publicando la pregunta, también puedes hacer esfuerzos para dar a Kudos quien haya ayudado a resolver tu problema. ¡Es una muestra de agradecimiento!

Visítenos enhttps://perytus.com, su ventanilla única para proyectos/formación/consulta relacionadas con Power BI.



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.

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.