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 all,
i have a base like below and need to create a measure with multiple filters intersection like this:
VAR
_first_filter all ID where Label = A and Value = 1
_second_filter all ID where Label = B and Value = 1
_third_filter all ID where Label = C and Value = 1
RESULT
and need to countrows of source from below with filters Label = C && all common ID between the 3 filter tables from above
Thanks in advance,
Cosmin
ID | Label | Value | Client |
1 | A | 1 | cosmin |
1 | B | 1 | cosmin |
1 | C | 1 | cosmin |
2 | A | 0 | cosmin |
2 | B | 1 | cosmin |
2 | C | 1 | cosmin |
3 | A | 0 | cosmin |
3 | B | 1 | cosmin |
3 | C | 0 | cosmin |
4 | A | 1 | cosmin |
4 | B | 1 | cosmin |
4 | C | 0 | cosmin |
5 | A | 1 | cosmin |
5 | B | 0 | cosmin |
5 | C | 999 | cosmin |
1 | A | 1 | marius |
1 | B | 0 | marius |
1 | C | 1 | marius |
2 | A | 0 | marius |
2 | B | 1 | marius |
2 | C | 1 | marius |
3 | A | 0 | marius |
3 | B | 1 | marius |
3 | C | 0 | marius |
4 | A | 1 | marius |
4 | B | 0 | marius |
4 | C | 1 | marius |
5 | A | 0 | marius |
5 | B | 1 | marius |
5 | C | 0 | marius |
Solved! Go to Solution.
Hi @cosminc ,
Please refer to below measure:
Count_rows = VAR temp_tab = ADDCOLUMNS ( Sample4, "Label number", CALCULATE ( DISTINCTCOUNT ( Sample4[Label] ), ALLEXCEPT ( Sample4, Sample4[ID] ), Sample4[Value] = 1 ) ) RETURN COUNTROWS ( FILTER ( temp_tab, [Label number] = 3 && [Label] = "C" ) )
Best regards,
Yuliana Gu
Hi @cosminc ,
Please refer to below measure:
Count_rows = VAR temp_tab = ADDCOLUMNS ( Sample4, "Label number", CALCULATE ( DISTINCTCOUNT ( Sample4[Label] ), ALLEXCEPT ( Sample4, Sample4[ID] ), Sample4[Value] = 1 ) ) RETURN COUNTROWS ( FILTER ( temp_tab, [Label number] = 3 && [Label] = "C" ) )
Best regards,
Yuliana Gu
Perfect!
Thanks,
Cosmin
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 |
---|---|
71 | |
70 | |
43 | |
31 | |
26 |
User | Count |
---|---|
89 | |
49 | |
44 | |
38 | |
37 |