The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |