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

Need to Create New Column using Combination of multiple row with same Code

Hello Users,

I need to create one custom column using Power Query / DAX 

as per below images, i have one column conatins code against each item Name

in result i  need one column that conatins only single line for each item (IF both item having same code)

please find below images for refrence. i need output as per shown in output snapshot.

 

Thanks in Advance.

Dhrutivyasa070_0-1685439389109.png

 

1 ACCEPTED SOLUTION
some_bih
Super User
Super User

Hi @Dhrutivyasa-070 you can create NEW table in Power BI as following:

TableCombo = ADDCOLUMNS (
    VALUES ( Sheet7[Code] ),
    "Qty", [M_Qty],
    "Item (Combo)",
        CONCATENATEX (
            CALCULATETABLE ( VALUES ( Sheet7[Item] ) ),
            Sheet7[Item],
            " + ",            
            Sheet7[Item],  
            ASC              
        )
)

TableCombo - is name of NEW table
Sheet7 you should adjust to your table
M_Qty = SUM(Sheet7[Qty]) - this is measure which you should create so table above is working
 
Original reference to this solution: https://dax.guide/concatenatex/    
Output should be like on picture below
I hope this help
 
some_bih_0-1685445678606.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






View solution in original post

4 REPLIES 4
devanshi
Helper V
Helper V

cobovalues =

CALCULATE(DISTINCT(code),CONCATENATE([item],"+",[item]),SUM(Qty),IF(COUNTROWS(DISTINCT(code),"Combo","-")))

 

some_bih
Super User
Super User

Hi @Dhrutivyasa-070 you can create NEW table in Power BI as following:

TableCombo = ADDCOLUMNS (
    VALUES ( Sheet7[Code] ),
    "Qty", [M_Qty],
    "Item (Combo)",
        CONCATENATEX (
            CALCULATETABLE ( VALUES ( Sheet7[Item] ) ),
            Sheet7[Item],
            " + ",            
            Sheet7[Item],  
            ASC              
        )
)

TableCombo - is name of NEW table
Sheet7 you should adjust to your table
M_Qty = SUM(Sheet7[Qty]) - this is measure which you should create so table above is working
 
Original reference to this solution: https://dax.guide/concatenatex/    
Output should be like on picture below
I hope this help
 
some_bih_0-1685445678606.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






Thanks for the solution, it worked for me!

tamerj1
Super User
Super User

Hi @Dhrutivyasa-070 

please try the following measures 

 

Item (Combo) =
CONCATENATEX ( VALUES ( 'Table'[Item] ), 'Table'[Item], ", " )

 

Total Qty =
SUM ( 'Table'[Qty] )

Remark =
IF ( COUNTROWS ( VALUES ( 'Table'[Item] ) ) > 1, "Combo", "-" )

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.

Top Solution Authors