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

AYUDA CON 1 DAX QUE NECESITO SUMAR

Estuve trabajando mucho tiempo en un dax y finalmente trabajé, aunque necesitaba modificar ese DAX para obtener otro resultado, pero no puedo hacer que funcione después de varias horas de intentarlo.

El DAX que funcionó es este:

Avg Total 2 = 
VAR Months =
    CALCULATE(COUNTROWS( ALLSELECTED ( PBI[Fecha],PBI[D_Laborales] )),PBI[D_Laborales]<>7)
RETURN
    IF (
        ISINSCOPE ( PBI[Fecha] ),
        IF(SUM(PBI[Total])<>BLANK(),FORMAT(SUM( PBI[Total]),"0")),
        DIVIDE (SUM ( PBI[Total]), (Months)))

Este es el que no está funcionando:

Avg Total 3 = 
VAR Months =
    CALCULATE(COUNTROWS( ALLSELECTED ( PBI[Fecha],PBI[D_Laborales] )),PBI[D_Laborales]<>7)
RETURN
  VALUE(IF (
        ISINSCOPE ( PBI[Fecha] ),
        IF(SUM(PBI[Total])<>BLANK(),FORMAT(SUM ( PBI[Total] ),"0")),IF(
        DIVIDE (SUM(PBI[Total]), Months )>0.5,1)))

Este último DAX está tratando de decir que si el resultado es >0.5 Ineed 1, de lo contrario nada, pero no puedo sumar ese resultado.

Este es el enlace si alguien PRO quiere darme una mano: https://www.dropbox.com/sh/8l5immlieab1lnn/AAAYiih51EogoIi7m2UHrqXia?dl=0

question.JPG

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Por favor, pruebe esta expresión en su medida. Hace referencia a la medida existente y devuelve un resultado de 8. Básicamente recrea el objeto visual de tabla anterior en una tabla virtual y, a continuación, resume la columna virtual [Avg Total 3].

Avg Total 4 =
SUMX (
    SUMMARIZE (
        FILTER ( PBI, PBI[D_Laborales] <> 7 ),
        PBI[DEMO],
        PBI[CC],
        PBI[MATRICULA],
        'dotacion (2)'[APELLIDOS]
    ),
    [Avg Total 3]
)

Si esto funciona para usted, márquelo como la solución. Los elogios también son apreciados. Por favor, avísame si no.

saludos

palmadita





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

1 REPLY 1
mahoneypat
Employee
Employee

Por favor, pruebe esta expresión en su medida. Hace referencia a la medida existente y devuelve un resultado de 8. Básicamente recrea el objeto visual de tabla anterior en una tabla virtual y, a continuación, resume la columna virtual [Avg Total 3].

Avg Total 4 =
SUMX (
    SUMMARIZE (
        FILTER ( PBI, PBI[D_Laborales] <> 7 ),
        PBI[DEMO],
        PBI[CC],
        PBI[MATRICULA],
        'dotacion (2)'[APELLIDOS]
    ),
    [Avg Total 3]
)

Si esto funciona para usted, márquelo como la solución. Los elogios también son apreciados. Por favor, avísame si no.

saludos

palmadita





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


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.