The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi Folks,
I need (I am assuming this has to be done via DAX) a formula that does the following:
I have two tables that are related through the following ID's Table1-WORKFLOW_ID and Table2- WF_AXN_ID
I need to return a table of values that include all records in table 1 EXCLUDING those with workflow ID's also included in table 2
Thanks in advance!
Solved! Go to Solution.
The expression except can help in this problem.
This expression can help
ExcludedWorkflowIDs = EXCEPT( Table1, Table2 )
Except will take every record in Table1 EXCEPT those in Table2.
The expression except can help in this problem.
This expression can help
ExcludedWorkflowIDs = EXCEPT( Table1, Table2 )
Except will take every record in Table1 EXCEPT those in Table2.
User | Count |
---|---|
15 | |
11 | |
8 | |
8 | |
7 |
User | Count |
---|---|
21 | |
20 | |
11 | |
10 | |
7 |