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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Basic Question on DAX Model

I have 2 Tables with Data as follows

TEST1

A     5

B     10

 

TEST2

A    P1

A    P2

A    P3

B    P4

B    P5

 

I pulled all the Columns to a Table on Desktop and got below Results - 

 

A    P1   5

A    P2   5

A    P3   5

B    P4   10

B    P5   10

-------------

             15

 

Total Row being 15 ... What I expected is to join TEST1 table with TEST2 and then sum the Numeric field but instead of the Total being 35 it is still 15. How does the DAX evaluate for this Scenario ???

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

 

Using the Query Editor, you should first merge both Tables into one (joining based on the first column) and then write a simple measure

 

=SUM(Merged Table[Amount])

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi Ashish,

 

I am just trying to understand how the DAX is computing a Total of 15 instead of 35 when you try to pull all the Columns from both the Tables.

 

Thanks Ashish & Phil for responding to this Topic. 

 

Here is what I am visualizing in SQL World - 

SELECT SUM(TEST1.Column2) FROM (SELECT * FROM TEST1 INNER JOIN TEST2 ON TEST1.Column1 = TEST2.Column1) A

 

But I think the SUM is still 15.

Phil_Seamark
Microsoft Employee
Microsoft Employee

Hi @Anonymous

 

How have you created the bottom table?  Have you just created a relationship between the two tables?


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Anonymous
Not applicable

Created those Tables manually and a relationship was also established between the first Column of both the tables. Test1 to Test2 ( one to many relationship)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.