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 nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I have two tables: BWJobs and ProjectJobs. Both have a "JobNumber" column.
I need to be able to show JobNumbers in BWJobs that aren't showing up in jobNumbers in ProjectJobs and vice versa. the values are formated as text. Example of a job: 2017-DAT-J02
Solved! Go to Solution.
Hi @bhmiller89
Add a new Table from the Modelling Tab
MissingJobs =
UNION (
EXCEPT ( VALUES ( BWJobs[JobNumber] ), VALUES ( ProjectJobs[JobNumber] ) ),
EXCEPT ( VALUES ( ProjectJobs[JobNumber] ), VALUES ( BWJobs[JobNumber] ) )
)
Hi @bhmiller89
Add a new Table from the Modelling Tab
MissingJobs =
UNION (
EXCEPT ( VALUES ( BWJobs[JobNumber] ), VALUES ( ProjectJobs[JobNumber] ) ),
EXCEPT ( VALUES ( ProjectJobs[JobNumber] ), VALUES ( BWJobs[JobNumber] ) )
)
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 21 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 69 | |
| 56 | |
| 45 | |
| 42 | |
| 30 |