Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. 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 () ) )
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 52 | |
| 39 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 66 | |
| 34 | |
| 32 | |
| 29 |