Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi.., I have two tables where I need to get the count of rows based on condition matches.
ie., Get count of rows From Table 2 where Table 1 [Date] = Table 2[Date] and Table 1[Name] = Table 2[Name].
Need a Calculated Column, since I required to see this column when extracting the report.
Note: Since I have indirect relationship, I was not able to create a direct relationship between two tables.
Solved! Go to Solution.
Hi @Beast ,
Based on your description, I have created a simple sampe:
Please try:
Column = COUNTROWS(FILTER('Table 2',[Date]=EARLIER(Table1[Date])&&[Name]=EARLIER(Table1[Name])))
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Beast ,
Based on your description, I have created a simple sampe:
Please try:
Column = COUNTROWS(FILTER('Table 2',[Date]=EARLIER(Table1[Date])&&[Name]=EARLIER(Table1[Name])))
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
you can use relatedtaable() / related()/userelationship DAX functions to get that...
i guess related() or Relatedtable() will be use in this scenario. once you can try
if it is having relation then you can use crossfilter() DAX function
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
62 | |
62 | |
52 | |
39 | |
24 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |