grouping mechanism

2005-05-11 Thread Mark Martin
,100.00,4th May 2005 I would identify the fields thus : foreach $item(@array) { ($transaction,$supplier,$amount,$pay_date) = split /,/,$item; } This allows me to print a remittance by transaction(record) but I need some sort of grouping mechanism to group transactions belonging to the same supplier

Re: grouping mechanism

2005-05-11 Thread John Doe
May 2005 03,supplierC,100.00,3rd May 2005 04,supplierA,100.00,4th May 2005 I would identify the fields thus : foreach $item(@array) { ($transaction,$supplier,$amount,$pay_date) = split /,/,$item; } This allows me to print a remittance by transaction(record) but I need some sort of grouping

Re: grouping mechanism

2005-05-11 Thread Lawrence Statton
,supplierA,100.00,4th May 2005 I would identify the fields thus : foreach $item(@array) { ($transaction,$supplier,$amount,$pay_date) = split /,/,$item; } This allows me to print a remittance by transaction(record) but I need some sort of grouping mechanism to group transactions belonging