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

June 2025 community update carousel

Fabric Community Update - June 2025

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