Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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 () ) )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
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 () ) )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.