Forum Discussion
Role level Security for Group Alternate Access
- 9 months ago
Hi Anonymous,
if I got it right, this should work.
1. Create a single GroupKey column
In Power Query or DAX (calculated column):
GroupKey =
IF(
NOT ISBLANK([Lookup Approver Group]),
[Lookup Approver Group],
[Lookup Requester Group]
)
Jay will have GroupKey = BLANK(), which is desired.
2. Create an RLS role
Use this DAX filter expression:
[GroupKey] =
CALCULATE(
MAX('Table'[GroupKey]),
'Table'[Employee Name] = USERPRINCIPALNAME()
)
If this works, leave kudos or mark it as solution.
Best regards!
Hi Anonymous,
if I got it right, this should work.
1. Create a single GroupKey column
In Power Query or DAX (calculated column):
GroupKey =
IF(
NOT ISBLANK([Lookup Approver Group]),
[Lookup Approver Group],
[Lookup Requester Group]
)
Jay will have GroupKey = BLANK(), which is desired.
2. Create an RLS role
Use this DAX filter expression:
[GroupKey] =
CALCULATE(
MAX('Table'[GroupKey]),
'Table'[Employee Name] = USERPRINCIPALNAME()
)
If this works, leave kudos or mark it as solution.
Best regards!
Hi Anonymous,
Thank you for reaching out to Microsoft Fabric Community.
Thank you Mauro89 for the prompt response.
As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided by the user for the issue worked? or let us know if you need any further assistance.
Thanks and regards,
Anjan Kumar Chippa
- v-achippa9 months ago
Community Support
Hi @arikofather,
Thank you Rufyda for the prompt response.
We wanted to kindly follow up to check if the solution provided by the user's for the issue worked? or let us know if you need any further assistance.
Thanks and regards,
Anjan Kumar Chippa