Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
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.
Solved! Go to Solution.
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
Proud to be a Super User!
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
Proud to be a Super User!
Hi,
Thank you for your help. Your formula worked very well.
User | Count |
---|---|
88 | |
74 | |
69 | |
59 | |
56 |
User | Count |
---|---|
40 | |
38 | |
34 | |
32 | |
28 |