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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Ashish_Mathur
Super User
Super User

Concatenate via a calculated column formula

Hi,

In the image below, the first 2 columns are the input columns and the third one is the expected result.  In each row of the table, for the fruit in the current row, i wish to concatenate all the unique calorie values via a calculated column formula.

 

Fruit Calorie Expected result
Apple High High, Low
Pear Medium Medium, High
Banana High High, Medium
Apple Low High, Low
Banana Medium High, Medium
Pear High Medium, High
Apple High High, Low

 

Thank you for your help.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@Ashish_Mathur,

 

Try this calculated column:

 

Unique Calorie =
VAR vFruit = Table1[Fruit]
VAR vTable =
    CALCULATETABLE (
        VALUES ( Table1[Calorie] ),
        Table1[Fruit] = vFruit,
        ALL ( Table1 )
    )
VAR vResult =
    CONCATENATEX ( vTable, Table1[Calorie], ", " )
RETURN
    vResult

 

DataInsights_0-1699540771112.png

 





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

Proud to be a Super User!




View solution in original post

2 REPLIES 2
DataInsights
Super User
Super User

@Ashish_Mathur,

 

Try this calculated column:

 

Unique Calorie =
VAR vFruit = Table1[Fruit]
VAR vTable =
    CALCULATETABLE (
        VALUES ( Table1[Calorie] ),
        Table1[Fruit] = vFruit,
        ALL ( Table1 )
    )
VAR vResult =
    CONCATENATEX ( vTable, Table1[Calorie], ", " )
RETURN
    vResult

 

DataInsights_0-1699540771112.png

 





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

Proud to be a Super User!




Hi,

Thank you for your help.  Your formula worked very well.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.