Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I woult like load only the last 20 invoice for each customer
Load .....
Customer, InvoiceDate, InvoiceNumber, Value
from resident InvoiceArchive;
Thank you very much for your help
try with
NEW:
LOAD * where ID <= 20;
NoConcatenate LOAD
*,
AutoNumber(InvoiceDate, Customer) as ID
Resident InvoiceArchive
order by Customer, InvoiceDate desc;
Hi Max
Work perfectly