Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Manage Roles with Multiple Filters

Hi,

 

I need to filter my table by using the managing roles. When I try to use the DAX command in a calculated column, it works perfectly fine. However, in my manage roles the DAX is not working. Basically, I want to filter the Brand = "DEF" with their ItemId that Ends with "G". In manage roles, the brand wouldn't even show up in the report when role testing conducted.

 

Here is my DAX command for the calculated column

IF([Brand]="ABC" || AND([Brand]="DEF",RIGHT([ItemId],1)="G"),TRUE(),FALSE())

 

DAX command for manage role

[Brand] in {"ABC"} || AND([Brand]="DEF",RIGHT([ItemId],1)="G")

 

  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi. It turns out that the table used was linked by the original/source table so the command used was still correct. Thanks 🙂 

3 Replies