Forum Discussion
ajayemmadi1
7 years agoHelper I
Row Level Security on Multiple Dimensions and Multiple Values
Hi, I am facing an issue in fixing the row level security for multiple dimensions and Values. I am able to do it for multiple dimensions but not multiple values. In the attached screenshots you ...
- 7 years ago
The logic you're using here will always return null. You're saying that this user can only see values where the BuildingGroup is Blackstone and where the BuildingGroup is also We Work. BuildingGroup can't be both at the same time.
You want to use or logic in your condition.
[BusinessVertical] = "Open Markets" && ( [BuildingGroup] = "Blackstone" || [BuildingGroup] = "We Work" )
Cmcmahan
7 years agoResident Rockstar
The logic you're using here will always return null. You're saying that this user can only see values where the BuildingGroup is Blackstone and where the BuildingGroup is also We Work. BuildingGroup can't be both at the same time.
You want to use or logic in your condition.
[BusinessVertical] = "Open Markets" && ( [BuildingGroup] = "Blackstone" || [BuildingGroup] = "We Work" )