Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 () ) )
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 47 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 83 | |
| 71 | |
| 39 | |
| 29 | |
| 27 |