Forum Discussion

Tine's avatar
Tine
New Member
9 years ago
Solved

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...
  • v-ljerr-msft's avatar
    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