Forum Discussion
BeginnerBob
8 years agoFrequent Visitor
Row Filter on Role
Hi, I have a column labelled UserID in my Site dimension which has many user accounts i.e. [email protected], [email protected] etc. I want to have a DAX expression which searches the string and filters t...
- 8 years ago
The following DAX filter expression works for me.
SEARCH(", " & USERPRINCIPALNAME() & ",", ", " & [UserID] & ",", 1, 0 ) > 0
v-chuncz-msft
8 years agoCommunity Support
The following DAX filter expression works for me.
SEARCH(", " & USERPRINCIPALNAME() & ",", ", " & [UserID] & ",", 1, 0 ) > 0