Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Does anyone know if there is a way to lookup a value from one table and return multiple values concatenated together like shown in the [Result] column of the 'Result Table' below?
Lookup Table
Item | Value |
Item #1 | Red |
Item #1 | Large |
Item #2 | Yellow |
Item #2 | Small |
Result Table
Item | Result |
Item #1 | Red; Large |
Item #2 | Yellow; Small |
Solved! Go to Solution.
@UBComma , Use a measure
concatenatex(Table, Table[Value], " ,")
Concatenate Text- Measure, DAX Table, and Power Query Table: https://youtu.be/xAh3tz1qo24
@UBComma , Use a measure
concatenatex(Table, Table[Value], " ,")
Concatenate Text- Measure, DAX Table, and Power Query Table: https://youtu.be/xAh3tz1qo24
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
6 |