Forum Discussion
PowerBIuser_2
3 years agoNew Member
Filter pie chart based on USERPRINCIPALNAME
Hi, I have the following table1: Task Status user1 user2 1 Completed Other Other 2 Completed USERPRINCIPALNAME Other 3 Pending Other USERPRINCIPALNAME 4 Pending USERPR...
- 3 years ago
I found the solution with the following measure:
Measure2 = CALCULATE(COUNT(table1[Status],
table1[user1]=USERPRINCIPALNAME() ||
table1[user2]=USERPRINCIPALNAME()
)
Greg_Deckler
3 years agoCommunity Champion