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.
I have below data in table
Id | Dispatch ID | In store | Send |
1 | 4 | 1 | 1 |
1 | 4 | -1 | 1 |
2 | 7 | -1 | 0 |
2 | 7 | 1 | 1 |
3 | 8 | 1 | 1 |
3 | 8 | 1 | 1 |
3 | 9 | 1 | 1 |
Now i need distinct count of (id,dispatch id) which is send
In this case it should only choose where In store=1 and send =1
As Id 1 has Instore =-1 and shared also =1 Then this should be ignored
Total in card it should be Count of (2,(3,8),(3,9))=3
ID 1 is ignored as it has combination that it was not present in stored but then also send.
I tried couple of measure but all failed at certain point with different dataset.
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Expected result measure: =
VAR _t =
ADDCOLUMNS (
SUMMARIZE ( Data, Data[Id], Data[Dispatch ID] ),
"@count",
COUNTROWS (
CALCULATETABLE ( FILTER ( Data, Data[In store] * Data[Send] = 1 ) )
),
"@countnotwant",
COUNTROWS (
CALCULATETABLE ( FILTER ( Data, Data[In store] * Data[Send] = -1 ) )
)
)
RETURN
COUNTROWS ( FILTER ( _t, [@countnotwant] = BLANK () ) )
Hi,
Please check the below picture and the attached pbix file.
Expected result measure: =
VAR _t =
ADDCOLUMNS (
SUMMARIZE ( Data, Data[Id], Data[Dispatch ID] ),
"@count",
COUNTROWS (
CALCULATETABLE ( FILTER ( Data, Data[In store] * Data[Send] = 1 ) )
),
"@countnotwant",
COUNTROWS (
CALCULATETABLE ( FILTER ( Data, Data[In store] * Data[Send] = -1 ) )
)
)
RETURN
COUNTROWS ( FILTER ( _t, [@countnotwant] = BLANK () ) )
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 | |
61 | |
52 | |
39 | |
23 |
User | Count |
---|---|
85 | |
58 | |
45 | |
43 | |
38 |