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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
vibhoryadav23
Helper II
Helper II

Create a new table base on the value from multiple tables

Hi,

I have multiple tables which connect to one table through an identifier. I want to summarize the values in a single view like in example below (can be a visualization or a new table). Its almost like a summarization on text concat (something which you can see in other tools like Alterxy but is not offered by Power BI).

 

Table T1
Identifier
A
B
C
D
E
F
Table T2 
ValueIdentifier
XA
YA
ZB
PB
QC
Table T3 
ValueIdentifier
XA
SA
TE
UE
VE
Output (Visualization)  
IdentifierValue T1Value T2
AX, YX, S
BZ, P 
CQ 
E T, U, V

 

Can you help me with this? Thanks in advance!

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @vibhoryadav23 

 

Measure:

 

Value T1 = CONCATENATEX('Table 2', [Value], ",")
Value T2 = CONCATENATEX('Table 3', [Value], ",")

 

vzhangti_0-1658730113481.png

 

Table:

 

Table =
SUMMARIZE (
    'Table 1',
    'Table 1'[Identifier],
    "Value T1", CONCATENATEX ( 'Table 2', [Value], "," ),
    "Value T2", CONCATENATEX ( 'Table 3', [Value], "," )
)

 

vzhangti_1-1658730444478.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi, @vibhoryadav23 

 

Measure:

 

Value T1 = CONCATENATEX('Table 2', [Value], ",")
Value T2 = CONCATENATEX('Table 3', [Value], ",")

 

vzhangti_0-1658730113481.png

 

Table:

 

Table =
SUMMARIZE (
    'Table 1',
    'Table 1'[Identifier],
    "Value T1", CONCATENATEX ( 'Table 2', [Value], "," ),
    "Value T2", CONCATENATEX ( 'Table 3', [Value], "," )
)

 

vzhangti_1-1658730444478.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

HotChilli
Super User
Super User

If you use T1 as the dimension table and relate it 1:m to T2 and T3, you can create 2 measures:

MeasureT3 = CONCATENATEX(TableT3, [Value], ",")
MeasureT2= CONCATENATEX(TableT2, [Value], ",").
Put those in a table visual with identifier from T1

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.