Forum Discussion
Merging Two Data Tables (Invoice and Orders)
- Anonymous7 years ago
If the order is invoiced you have invoice number, else you have just order number alone & invoice number is blank. So allrequied details are available in order table itself.
Create the below 2 columns and drag along with customer and value columns from the Order table.
Invoice/order = IF( ISBLANK( Order[InvoiceNo]), Order[OrderNo],Order[InvoiceNo])
TransactionType= IF( ISBLANK( Order[InvoiceNo]), "Order","Invoice")
Hope this helps.
Thanks
Raj
If the order is invoiced you have invoice number, else you have just order number alone & invoice number is blank. So allrequied details are available in order table itself.
Create the below 2 columns and drag along with customer and value columns from the Order table.
Invoice/order = IF( ISBLANK( Order[InvoiceNo]), Order[OrderNo],Order[InvoiceNo])
TransactionType= IF( ISBLANK( Order[InvoiceNo]), "Order","Invoice")
Hope this helps.
Thanks
Raj