Hey everybody,
So I'm having a challenge to figure out what's the best way to get one .CSV (input) and have multiple outputs based on a specific parameter. For example, let's say I have a system that register all sales transactions from my company. Something like this:
My question is, how can I have an output where I would get one file just for David, another for Abner and a third file for Mary with their own individual transactions?
Please, have in mind that the system has over 200 hundreds Salesman.
Thanks!!!!
So I'm having a challenge to figure out what's the best way to get one .CSV (input) and have multiple outputs based on a specific parameter. For example, let's say I have a system that register all sales transactions from my company. Something like this:
SALESMAN | TRANSACTION TYPE | DATE | AMOUT |
David | New Contract | 2/3/15 |
$5,000.00 |
David | Recurring Fee | 2/5/15 |
$3,400.00 |
Abner | New Contract | 2/8/15 |
$2,000.00 |
David | End of Contract | 2/12/15 |
-$3,500.00 |
Mary | Recurring Fee | 2/15/15 |
$7,000.00 |
Abner | Recurring Fee | 2/18/15 |
$2,100.00 |
Mary | New Contract | 2/22/15 |
$13,000.00 |
Mary | Recurring Fee | 2/25/15 |
$2,200.00 |
My question is, how can I have an output where I would get one file just for David, another for Abner and a third file for Mary with their own individual transactions?
Please, have in mind that the system has over 200 hundreds Salesman.
Thanks!!!!