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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
RicardoLeivaG
Helper I
Helper I

Problemas con GROUPBY

Hola Comunidad, 

 

tengo el siguiente problema con un groupBy 

Codigo:

compras =
GROUPBY(ih_hist20062020,
                 ih_hist20062020[Fecha factura]. Año],
                 ih_hist20062020[Nombre],
                 "Total",SUMX(CURRENTGROUP(),ih_hist20062020[Monto Neto]),
                 "Cantidad de Invoice",COUNTX(CURRENTGROUP(), COUNTROWS(DISTINCT(ih_hist20062020[Invoice]
))))
 
La suma del total, cuadra pero al buscar el numero de Invoice, el cual se repite, me devuelve un numero de 1456 cuando deberia ser 1220
 
alguno idea o estopy haciendo mal la agrupacion???
1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

Have you tried the same with SUMMARIZE instead to simplify it

 

Purchases =
ADDCOLUMNS (
    SUMMARIZE (
        ih_hist20062020,
        ih_hist20062020[Invoice Date].[Year],
        ih_hist20062020[Number]
    ),
    "Total",
        CALCULATE (
            SUM ( ih_hist20062020[Net Amount] )
        ),
    "Cantidad de Invoice",
        CALCULATE (
            DISTINCTCOUNT ( ih_hist20062020[Invoice] )
        )
)

 
Pat




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

2 REPLIES 2
mahoneypat
Microsoft Employee
Microsoft Employee

Have you tried the same with SUMMARIZE instead to simplify it

 

Purchases =
ADDCOLUMNS (
    SUMMARIZE (
        ih_hist20062020,
        ih_hist20062020[Invoice Date].[Year],
        ih_hist20062020[Number]
    ),
    "Total",
        CALCULATE (
            SUM ( ih_hist20062020[Net Amount] )
        ),
    "Cantidad de Invoice",
        CALCULATE (
            DISTINCTCOUNT ( ih_hist20062020[Invoice] )
        )
)

 
Pat




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


Muchas gracias funciono.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Solution Authors