Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have 2 tables , one is ORDER and another for INVOICE. Once an order is invoiced, the lines in the "Invoice" Table replaces the lines in the "Order" Table.
However i want to look at orders that are not invoiced at all, hence I have combined the 2 tables , by concatenating the "Order" table to the "Invoice" table and thereafter dropping the "Orders" table as shown below.
Concatenate ([INVOICE])
Load * Resident [ORDER];
drop table [ORDER];
When an order is invoiced , it generates an invoice number, otherwise invoice number its shown as "****NEW***.
I only want to show the line that appears in the invoice table and the line in the order table to fall off.
How do i do this in the scripting.
See attached excel . Those lines that are highlighted I want them to fall away.
kind regards
Nayan
Hi Gysbert
It worked. Thank you for all your help. Much appreciated.
kind regards
Nayan
Hi Gysbert
Just one query, the actual data that i am working on, the ORDNUMBER and ITEM are in two seperate tables. They have a common link field called UNIQINV. How do I apply this in the scripting you have given me.
kind regards
Nayan