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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How to count a specific text value in a different table

Hi all!

 

I just started working with powerBI and can't find the right solution for my question.  I have the following tables/collumns

 

Table A 

- A collumn with names

 

Table B (customers)

- Collumn with names where customers bought something (Related to collumn in table A)

 

So in table A i want to add a collumn with the count of the names in collumn 1, and how many times they are mentioned in table B. I tried some count and if statements but haven't figured out the right statement. 

2 ACCEPTED SOLUTIONS
az38
Community Champion
Community Champion

Hi @Anonymous 

it depends on full your data model, but in common case it could be enogh to create the next measure (if you have relationships between tables) to table1

Measure = calculate(countrows('Table2'))

 

do not hesitate to give a kudo to useful posts and mark solutions as solution

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

g_datasense
Advocate I
Advocate I

Hello @Anonymous ,

 

You can create a calculate column on the Table A:

CALCULATE(

         COUNT(Table B[name])
)

 

Or you can do the same with a measure. I think your column didn't work because you are not in the same context, for this you should use CALCULATE.

 

Thanks,

Guilherme

https://www.linkedin.com/in/antunesguilherme 

 

 

View solution in original post

3 REPLIES 3
g_datasense
Advocate I
Advocate I

Hello @Anonymous ,

 

You can create a calculate column on the Table A:

CALCULATE(

         COUNT(Table B[name])
)

 

Or you can do the same with a measure. I think your column didn't work because you are not in the same context, for this you should use CALCULATE.

 

Thanks,

Guilherme

https://www.linkedin.com/in/antunesguilherme 

 

 

az38
Community Champion
Community Champion

Hi @Anonymous 

it depends on full your data model, but in common case it could be enogh to create the next measure (if you have relationships between tables) to table1

Measure = calculate(countrows('Table2'))

 

do not hesitate to give a kudo to useful posts and mark solutions as solution

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

Can i add a last date filter here as well? So that i can count only the values from the last date available.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors