Forum Discussion
sabeensp
7 years agoHelper IV
Multiple Filter from Mutiple Tables
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.
2 Replies
- v-xuding-msftCommunity Support
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.
- sabeenspHelper IV