This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi Folks,
Been trying to create this RLS model in one of my dashboards. We have 32 companies using various letter combos. Typically if people only need access to certain companies I would do:
[Company] IN {"B", "D", "Z"}
or if they do not need access to 1 company but everything else I would do:
[Company] <> "B"
However, I have to assign a user access to not see 6 companies. I tried doing the following and it didn't work:
[Company] NOT IN {"A", "C", "E", "I", "BA", "BG"}
The only way I can seem to get it work is if I do somethigng like:
[Company] <> "A" && [Company] <> "C", etc
There has to be an easier way....what am I missing here?
Solved! Go to Solution.
I think you could use
not([Company] IN {"A", "C", "E", "I", "BA", "BG"})
Hi @sokatenaj,
IN function works in DAX filter, you can use IN including all accessed companies as picture1 shown. I test it and work as picture2 shown.picture1
picture2
For Row Level Security, please review this blog, which describe it in detailed steps.
Best Regards,
Angelia
Hi @v-huizhn-msft,
Thanks for this. However, I know how to do that part. What I can't seem to get work right is to say it is NOT those companies.
I want to write something along the lines of:
[Company] NOT IN {"A", "C", "E", "I", "BA", "BG"}
I just don't understand why it isn't working. I tried it so many ways, but the only way I can get it to work is if I do:
[Company] <> "A" && [Company] <> "C", etc
That surely can't be the only way.
I think you could use
not([Company] IN {"A", "C", "E", "I", "BA", "BG"})
@gooranga1 That was exactly what I needed. I did not think I could add "Not()" in that context. That is really helpful and it worked like a charm. Thank you!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 23 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 50 | |
| 30 | |
| 24 | |
| 23 |