Forum Discussion
Matt_JEM
1 year agoHelper I
List missing information in new table
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'[Customer...
- 1 year ago
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
johnt75
1 year agoSuper User
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