Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Good day Everybody.
I have a table 'ArcSalesMove[CustomerPoNumber] directly from our Syspro SQL server that contains all the CustomerPoNumbers in the system. Another table 'InvMovements'[CustomerPoNumber] have all the only the CustomerPoNumbers that is now in the factory.
How do I creat a new table thet will list both the 'ArcSalesMove[CustomerPoNumber] and 'InvMovements'[CustomerPoNumber] next to one another so that I can find the create a list of CustomerPoNumbers that is not in the factory.
I thank you in advance for your assistance.
Matt
Solved! Go to Solution.
You can create a table of PO numbers not in the factory with
Not in factory =
VAR AllNumbers =
DISTINCT ( 'ArcSalesMove'[CustomerPoNumber] )
VAR InFactory =
DISTINCT ( 'InvMovements'[CustomerPoNumber] )
VAR Result =
EXCEPT ( AllNumbers, InFactory )
RETURN
Result
Hi @Matt_JEM ,
Create a new table by this DAX:
PoNumbersNotInFactory =
EXCEPT (
VALUES('ArcSalesMove'[CustomerPoNumber]),
VALUES('InvMovements'[CustomerPoNumber])
)
You can create a table of PO numbers not in the factory with
Not in factory =
VAR AllNumbers =
DISTINCT ( 'ArcSalesMove'[CustomerPoNumber] )
VAR InFactory =
DISTINCT ( 'InvMovements'[CustomerPoNumber] )
VAR Result =
EXCEPT ( AllNumbers, InFactory )
RETURN
Result
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
93 | |
87 | |
84 | |
67 | |
49 |
User | Count |
---|---|
141 | |
114 | |
111 | |
59 | |
59 |