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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Relationship between tables in DAX

Hi,

 

I am trying to test if there is a relation between two tables in power bi desktop by creating the following column :

 

Etat Paiement = IF(RELATEDTABLE('gest_asso ticket_rl');"Paid";"Not Paid")

 

schema.png

 

There is a relation between the two tables but i need to flag the row that are not related for the relation Activié => ticket_rl.

I have an error trying to compute the code mentionned before.

 

Anyone can give me a hint or a way to achieve that i want ?

 

Kind regards,

 

Mohammad

 

 

 

1 ACCEPTED SOLUTION

You could try adding a calculated column to 'Activité' using the following code.  This will put a number for rows that match and you can use a filter to help identify the rows with no related rows.

 

Count of Related Rows = CALCULATE(COUNTROWS('gest_asso ticket_rl'))

Does that help you?


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

Proud to be a Datanaut!

View solution in original post

4 REPLIES 4
Phil_Seamark
Microsoft Employee
Microsoft Employee

HI @Anonymous

 

What columns do you use in the relationship between the two tables?

 

And are you trying to find the rows in 'gest_asso ticket_rl' that don't exist in 'Activié'

 

Phil


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

Proud to be a Datanaut!

Anonymous
Not applicable

Hi @Phil_Seamark,

 

Thanks for your reply.

 

The column used for the relationship between the two tables id ID.

 

What I am trying to do is to find rows in 'Activité' that do not exist in 'gest_asso ticket_rl'.

 

Mohammad

You could try adding a calculated column to 'Activité' using the following code.  This will put a number for rows that match and you can use a filter to help identify the rows with no related rows.

 

Count of Related Rows = CALCULATE(COUNTROWS('gest_asso ticket_rl'))

Does that help you?


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

Proud to be a Datanaut!

Anonymous
Not applicable

Yes thank you very much, it works and fits my needs.

 

 

Mohammad

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

Top Solution Authors