Perhaps I am making the example too complex, because I cannot follow it.
Here is a simple one:
You have an invoice table.
Invoice
CustomerID (int)
InvoiceID (int)
InvoiceDate (datetime)
I have the following data on the table:
CustomerID, InvoiceID, InvoiceDate
0,0,1/1/2000
1,1,1/2/2000
1,2,1/3/2000
2,3,1/4/2000
1,4,1/4/2000
3.5.1/5/2000
2.6.1/6/2000
Now I want to create a LLBLGen Pro that takes customer 0,1,2,3 for sales up to 1/6/2000 and therefore my result should be:
0,0,1/1/2000
1,4,1/4/2000
3.5.1/5/2000
2.6.1/6/2000
How would I do this on LLBLGen Pro code?
Please help!!!
Thank you,
BFV