Forum Discussion
Tine
9 years agoNew Member
How to manage roles which are defined by multiple values
Hello, In the desktop version you can manage roles by defining a name, choosing the table and the "column" Then you select one value out of this column to define a role How can you manage a role w...
- 9 years ago
Hi Tine,
As the filter to create a role is using DAX expression, so you should be able to use "||" operator to add more regions to your role. The expression below is for your reference.:smileyhappy:
[Region] = "North" || [Region] = "South" || [Region] = "Other Regions"
Regards
v-ljerr-msft
Microsoft Employee
9 years agoHi Tine,
As the filter to create a role is using DAX expression, so you should be able to use "||" operator to add more regions to your role. The expression below is for your reference.:smileyhappy:
[Region] = "North" || [Region] = "South" || [Region] = "Other Regions"
Regards
Anonymous
8 years agoNot applicable
The same case can work via AND condition.?