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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
JMJM
New Member

Need Help with Dax

Having three tables, Table A is a one-to-many relationship to Table B and Table B is a one-to-many relationship to Table C, and I would like to get a calculated column "value" in the form of Result desired table. Anyone could help?

 

Table A

Contract Number
123
234
456

 

Table B 

Contract NumberActivity ID
1230001
2340002
4560003

 

Table C

Activity IDValue
0001100
0002200
0003300

 

Result desired: (Table A)

Contract Number Value (From Table C)
123100
234200
456300
1 ACCEPTED SOLUTION
barritown
Super User
Super User

Hi @JMJM,

 

With your mock data this calculated column in Table A will probably do the job:

Value = CALCULATE ( MAX ( 'Table C'[Value] ) )

But one to many means that you can have 2 entries in Table C with Activity ID = 0003 and values 300 and 400. Which value do you expect to receive as a result? 

 

Best Regards,

Alexander

My YouTube vlog in English

My YouTube vlog in Russian

View solution in original post

1 REPLY 1
barritown
Super User
Super User

Hi @JMJM,

 

With your mock data this calculated column in Table A will probably do the job:

Value = CALCULATE ( MAX ( 'Table C'[Value] ) )

But one to many means that you can have 2 entries in Table C with Activity ID = 0003 and values 300 and 400. Which value do you expect to receive as a result? 

 

Best Regards,

Alexander

My YouTube vlog in English

My YouTube vlog in Russian

Helpful resources

Announcements
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.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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