Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello everyone!
I am trying to Sum Qty from two different data sources. The data sources both contain a column that has customer names.
So i am trying to sum the Overall Qty per customer.
Here i have an example. I tried using the quick messure to add qty on qty but that only worked overall not for individual customers.
Solved! Go to Solution.
Hi,
Please try to create a distinct dimension table and create relationships among them:
DimensionTable = DISTINCT(SELECTCOLUMNS('Test-1',"CustomerID",'Test-1'[CustomerID]))Then create a measure to sum all Qty from two tables:
Measure = SUM('Test-1'[Qty])+SUM('Test-2'[Qty])Choose [CustomerID] from DimensionTable and this measure as a table visual, it shows:
Hope this helps.
Best Regards,
Giotto Zhi
Hi,
Please try to create a distinct dimension table and create relationships among them:
DimensionTable = DISTINCT(SELECTCOLUMNS('Test-1',"CustomerID",'Test-1'[CustomerID]))Then create a measure to sum all Qty from two tables:
Measure = SUM('Test-1'[Qty])+SUM('Test-2'[Qty])Choose [CustomerID] from DimensionTable and this measure as a table visual, it shows:
Hope this helps.
Best Regards,
Giotto Zhi
Create a common dimension and join both tables with that.
You can create like
customer = distinct(union(all(table1[customer ]),all(table2[customer ])))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.