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

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.

Reply
zamurr
Microsoft Employee
Microsoft Employee

Combine multiple tables into one table

 

I have a massive data model that is getting big and slow. I was hoping for a way to combine a few of the tables into one big table. I know in Excel you can do it with a series of VLOOKUP, but I am hoping to accompish this in Power BI.

 

powerbidatamodel.png

 

The data model is setup with linking tables, 1 to many relationships.

 

I am not sure if DAX can do this or not. I have read a bunch of articles but nothing seems to explain it quite like i want. Merge and Append do not have the logic behind them that i need.

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi zamurr,

 

>> I am not sure if DAX can do this or not. I have read a bunch of articles but nothing seems to explain it quite like i want.

Obviously, dax support this feature.

 

You could use selectcolumns/addcolumns , related, lookupvalue functions to achieve your requirement.

Below is my sample:

Tables: ‘Person’, ’Product’, ’Type’, ’Records’, ’Gender’.

‘Person’

 Capture.PNG

’Product’

 Capture2.PNG

’Type’

 Capture3.PNG

’Gender’

 Capture4.PNG

’Records’

 Capture5.PNG

Relationship:

 Capture7.PNG

Dax formula:

Detail = SELECTCOLUMNS(Records,"Person Name",RELATED(Person[Name]),"Gender",LOOKUPVALUE(gender[Describe],gender[Index],RELATED(Person[gender])),"Type",RELATED('Type'[Type Name]),"Product Name",RELATED('Product'[Product Name]),"Price",RELATED('Product'[Price]),"Amount",Records[Amount],"Total",[Amount]*RELATED('Product'[Price]))

 

 Capture6.PNG

 

Notice: if the columns have the relationship you could simple use Related() function to get the specify values. Otherwise, you could use LookupValue() to search the specify column.

 

Regards,

Xiaoxin Sheng

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi zamurr,

 

>> I am not sure if DAX can do this or not. I have read a bunch of articles but nothing seems to explain it quite like i want.

Obviously, dax support this feature.

 

You could use selectcolumns/addcolumns , related, lookupvalue functions to achieve your requirement.

Below is my sample:

Tables: ‘Person’, ’Product’, ’Type’, ’Records’, ’Gender’.

‘Person’

 Capture.PNG

’Product’

 Capture2.PNG

’Type’

 Capture3.PNG

’Gender’

 Capture4.PNG

’Records’

 Capture5.PNG

Relationship:

 Capture7.PNG

Dax formula:

Detail = SELECTCOLUMNS(Records,"Person Name",RELATED(Person[Name]),"Gender",LOOKUPVALUE(gender[Describe],gender[Index],RELATED(Person[gender])),"Type",RELATED('Type'[Type Name]),"Product Name",RELATED('Product'[Product Name]),"Price",RELATED('Product'[Price]),"Amount",Records[Amount],"Total",[Amount]*RELATED('Product'[Price]))

 

 Capture6.PNG

 

Notice: if the columns have the relationship you could simple use Related() function to get the specify values. Otherwise, you could use LookupValue() to search the specify column.

 

Regards,

Xiaoxin Sheng

zamurr
Microsoft Employee
Microsoft Employee

this looks like it is exactly what i am trying to do, however when i try to recreate your example i get this error

 

The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.

 

This is going to sound like a total noob question, and it should as i am a noob. Once you create your data model, how do i input the DAX formula you sent me.

 

Will it go in as a measured column? a new column?

 

I have been googling but haven't found much

zamurr
Microsoft Employee
Microsoft Employee

Found it. Modeling -> New Table.

a_mixed_life
Resolver I
Resolver I

Would it be easier for you to create a SQL table (Data Warehouse) that combines them all. Create SQL View against that table, then connect your PowerBI to the SQL View and Dimension tables? That should speed it up.

Kris

That would defintely be faster, however, Most of those tables are from Excel files and are static. But I think creating a SQL view would be ideal. thanks.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

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.