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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Solved! Go to Solution.
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 ?
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 ?
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.
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |