Hi
I have following data in the CSV file , I would like to extract only data that has FIRST R/B
Since the data is in CSV i have applied Trim function and added de-limiter "|" for every 2 spaces, I'm able to apply filter for
FIRST R/B extract required data.
TRANS. FUNC. PROC.CODE 1RD COUNTS RECON AMOUNT
---------------- ------------ --- ---------- ----------------------------------
FIRST R/B -F PURCHASE ORIG YI 1 2,871.67 CR
CREDIT ORIG YI 2 1,000 CR
PURCHASE ORIG Y2 3 2,000 CR
---------------- ------------ --- ---------- ----------------------------------
As shown in above example data is considered as one set , I'm unable to apply filter just to FIRST R/B -F and extract all the data in that set
I can't apply filter to credit other unwanted data of credit is also getting filtered
Expected Output:
| TRANS. | FUNC. | PROC.CODE | COUNTS | AMOUNTS |
| FIRST R/B -F | PURCHASE | ORIG YI | 1 | 2,871.67 |
| FIRST R/B -F | PURCHASE | ORIG YI | 1 | 2,871.67 |
| FIRST R/B -F | CREDIT | ORIG YI | 2 | 1,000 |
| FIRST R/B -F | PURCHASE | ORIG Y2 | 3 | 2,000 |
CSV input file has been attached for reference