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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

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.