Forum Discussion
Wkbdrguy
8 years agoMicrosoft Employee
Filtered Report based on Team assignment OR Duplicate?
I have been using PivotTable from excel to find an incorrect data assignment, such as finding 2 teams assigned to the same server. There can be around 5000+ ticket entries. How can I produce a report...
- 8 years ago
Hi Wkbdrguy
With PowerBI desktop, you can directly create a calculated table to get the Final Results
Go to Modelling Tab>>NEW TABLE and enter this code
Final result = CALCULATETABLE ( Table1, FILTER ( ALL ( Table1[Server] ), CALCULATE ( DISTINCTCOUNT ( Table1[Team] ) > 1 ) ) )
Zubair_Muhammad
8 years agoCommunity Champion
Hi Wkbdrguy
With PowerBI desktop, you can directly create a calculated table to get the Final Results
Go to Modelling Tab>>NEW TABLE and enter this code
Final result =
CALCULATETABLE (
Table1,
FILTER (
ALL ( Table1[Server] ),
CALCULATE ( DISTINCTCOUNT ( Table1[Team] ) > 1 )
)
)Wkbdrguy
8 years agoMicrosoft Employee
Exactly what I was looking for. This worked out great.