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
Mumiah
Frequent Visitor

Count of how many times values from one column repeat in another table

Hi, I'm still new to power bi and I feel like I'm messing up at the most basic level, I tried finding similar posts here but for some reason they're not working for my circunstances,  I have 2 tables as shown on the picture, table 'Raw Combined' lists tickets generated by users, table 'New Hire Report' lists users who are new hires, I need a measure that gives me a count of how many tickets were generate by new hires, I tried creating a new table grouping raw combined and then matching to new hire then doing a sum of matched users but wasn't able to get it to work, I feel like this could be a simple measure created from the visual editor, the idea is to display the amount of tickets in a Card. Any guidance here would truly help. Thanks!

 

 

Mumiah_1-1676586098491.png

 

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Mumiah 

you can try this

Measure = 
VAR tbl=ADDCOLUMNS('New Hire',"count",CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[customer name]='New Hire'[Customer name])))
return sumx(tbl,[count])

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@Mumiah 

you can try this

Measure = 
VAR tbl=ADDCOLUMNS('New Hire',"count",CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[customer name]='New Hire'[Customer name])))
return sumx(tbl,[count])

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thank you that did the trick!

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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