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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
Employee
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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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