Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi!
I have a table with two columns: one of users ("User") and one of applications ("Application") they use.
I have a second table with one column: the applications that can be used ("White List").
I need to create a third table with one column: consisting of applications that cannot be used ("Blacklist"), to use it as a filter in the first table.
Can anybody help me?
Thanks in advance!
Solved! Go to Solution.
Hi @cyed ,
You could refer to the following DAX to create a new table:
New Table =
VAR a = DISTINCT('Table'[Application])
var b = DISTINCT('Table (2)'[White List])
return
EXCEPT(a,b)
Hi @cyed ,
You could refer to the following DAX to create a new table:
New Table =
VAR a = DISTINCT('Table'[Application])
var b = DISTINCT('Table (2)'[White List])
return
EXCEPT(a,b)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 41 | |
| 30 | |
| 24 |