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

Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.

Reply
khalilliraqui
Regular Visitor

Counting using related tables

I have three tables related to each others (two tables many-to-many) : lets take this as an example 

A person has many resources

power bi.png

I wanted to count for example : for every resource the number of people who has this resource, with a special condition on person for example firstname starts with "j".

I try many functions like filter or others but theese function only filter into the same table.

how can i use join on couting ?

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi khalilliraqui,

 

According to your description, you want to get the count of resource owner persons which first name start with “j”?

 

If as I said, you can follow below steps):

 

  1.  Create sample table, ‘Person’, ’Personal Source’ , ‘Resource Type’.

‘Person’:

Capture.PNG

’Personal Source’:

 Capture2.PNG

‘Resource Type’:

 Capture3.PNG

  1. Write the Dax formula of requirement:

 

Recoure Count of Person Start with 'j' = DISTINCT( SELECTCOLUMNS('Personal Source',"Resource Type",RELATED('Resource Type'[Name]),"Count",COUNTX(FILTER('Personal Source','Personal Source'[Resource Type ID]=EARLIER('Personal Source'[Resource Type ID])&& LEFT(RELATED(Person[First Name]))="j"),'Personal Source'[Person ID])))

 

 Capture4.PNG

 

Reference:

LEFT Function (DAX)

RELATED Function (DAX)

 

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi khalilliraqui,

 

According to your description, you want to get the count of resource owner persons which first name start with “j”?

 

If as I said, you can follow below steps):

 

  1.  Create sample table, ‘Person’, ’Personal Source’ , ‘Resource Type’.

‘Person’:

Capture.PNG

’Personal Source’:

 Capture2.PNG

‘Resource Type’:

 Capture3.PNG

  1. Write the Dax formula of requirement:

 

Recoure Count of Person Start with 'j' = DISTINCT( SELECTCOLUMNS('Personal Source',"Resource Type",RELATED('Resource Type'[Name]),"Count",COUNTX(FILTER('Personal Source','Personal Source'[Resource Type ID]=EARLIER('Personal Source'[Resource Type ID])&& LEFT(RELATED(Person[First Name]))="j"),'Personal Source'[Person ID])))

 

 Capture4.PNG

 

Reference:

LEFT Function (DAX)

RELATED Function (DAX)

 

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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