Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to count in progressive thdocuments:example:
customer invoice no.AAA 105 1AAA 106 2
BBB 305 1BBB 605 2BBB 702 3
CCC ..........
the No must be grupped by Customer and by documentis it possible to do in script?may be in For loop or for each loop?ThanksRegardsSlash
hi ,
use something like this
load
Customer,
Invoice,
if(previous(Customer) <> Customer, 1, peek(Counter) + 1) as Counter
resident
Tab1
Order By
Customer,invoice
;