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
Scarthart
Helper I
Helper I

Create a separate table from another with unique values ​​and a total column


good morning, I hope you can help me, I want to create a table from another, what I want is for the new table to take the unique values ​​with the total amountCaptura de pantalla 2022-11-30 102616.pngCaptura de pantalla 2022-11-30 102644.png

 

These are the two columns in which I want to generate the new table with unique values

 

Captura de pantalla 2022-11-30 102846.png

1 ACCEPTED SOLUTION

En ese caso usa el código DAX equivalente a:

Tabla cantidad por código =
ADDCOLUMNS (
    SUMMARIZE ( fTable, fTable[Código], fTable[Descripción] ),
    "Cantidad",
        CALCULATE (
            SUM ( fTable[Cantidad] ),
            FILTER ( fTable, fTable[Código] = EARLIER ( fTable[Código] ) )
        )
)

ftable.jpgnew.jpgresult.jpg

 

Pero si lo que necesitas es visualizar las cantidades, lo único que necesitas es crear una medida tipo :

Suma de Cantidad = SUM(fTable[Cantidad])

y creas un visual de tabla con los campos originales de código y descripción & la medida:

visual.jpg

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

3 REPLIES 3
PaulDBrown
Community Champion
Community Champion

Try this pattern:

 

Tabla cantidad por código =
ADDCOLUMNS (
    VALUES ( fTable[Código] ),
    "Cantidad",
        CALCULATE (
            SUM ( fTable[Cantidad] ),
            FILTER ( fTable, fTable[Código] = EARLIER ( fTable[Código] ) )
        )
)

 

ftable.jpgnew.jpgresult.jpg


However, is there a particular reason you  need to create these new physical tables? These sort of operations are normally done using measures in visuals





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






@PaulDBrown Thank you very much seriously, the reason why I am discovering this table is because I want to know the total quantity of the product, in this almost the product is identified by a code.

 

In the case that you want to add a description, how can you add it?

 

Captura de pantalla 2022-11-30 113607.png

En ese caso usa el código DAX equivalente a:

Tabla cantidad por código =
ADDCOLUMNS (
    SUMMARIZE ( fTable, fTable[Código], fTable[Descripción] ),
    "Cantidad",
        CALCULATE (
            SUM ( fTable[Cantidad] ),
            FILTER ( fTable, fTable[Código] = EARLIER ( fTable[Código] ) )
        )
)

ftable.jpgnew.jpgresult.jpg

 

Pero si lo que necesitas es visualizar las cantidades, lo único que necesitas es crear una medida tipo :

Suma de Cantidad = SUM(fTable[Cantidad])

y creas un visual de tabla con los campos originales de código y descripción & la medida:

visual.jpg

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






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.