Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hello, I have 2 tables
Table 1 and Table 2 both have join conditions
Table1.Column1 = Table 2.Column2
I Need to create a meassure to count
Count(Table1.Column3) with the follwing filters
Table1.Column 5 = "Red"
Table1.Column 6 = "Large"
Table2.Column 3 <> ""
Appreciate your help.
Hi @sabeensp ,
I created a measure you can have a try.
Measure = CALCULATE(COUNT(Table1[Column3]),FILTER(Table1,Table1[Column 5] = "Red" && Table1[Column 6] = "Large" && MAX(Table2[Table 2.Column 3])<> BLANK()))
If this is not what you want, can you please post some sample data and the expected result?
Best Regards,
Xue
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!