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
Anonymous
Not applicable

DATA MODELING

In Power BI, I have two tables with the same columns. Table 1's data comes from the server, and Table 2's data comes from Excel. T1's data is from one month back, and T2's data is from the current month. I tried mapping these tables through a dates table, but it's not accurate. For example, I want to show customer-wise sales, but when I take customers from T1, then T2's sales are not affected. I want both T1 and T2 columns to be the same, with just the sale values coming from different tables.

1 ACCEPTED SOLUTION
Daniel29195
Super User
Super User

i understand you.

you can using dax create w caluclated table : 

DimCustomers = 

var customers_table_1 = distinct( t1[customer_column])

var customers_table_2 = distinct( t2[customer_column])

RETURN

distinct( 

union ( customers_table_1   , customers_table_2 ) 

 

then you link this table to both t1 and t2 table base on the customer field. 

 

then in your visuals, you read the customer data from the newly created table :  DimCustomers.

 

will this solve it ? or am i missing something ? 

View solution in original post

3 REPLIES 3
Daniel29195
Super User
Super User

i understand you.

you can using dax create w caluclated table : 

DimCustomers = 

var customers_table_1 = distinct( t1[customer_column])

var customers_table_2 = distinct( t2[customer_column])

RETURN

distinct( 

union ( customers_table_1   , customers_table_2 ) 

 

then you link this table to both t1 and t2 table base on the customer field. 

 

then in your visuals, you read the customer data from the newly created table :  DimCustomers.

 

will this solve it ? or am i missing something ? 

Daniel29195
Super User
Super User

Hello,

if the 2 tables are the same with same columns and same column names, try appending the 2 tables together. this way you will have 1 consolidated table . ( fact table  )

 

hope this helps.

let me know if you have any concerns. 

Anonymous
Not applicable

Actually i cant because server data is way too big like it takes 2-3hr to refresh. So thats why im trying to find some alternate way to map these.

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!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 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.