1. Batch Filtering Paid Invoices
Data AnalystBackground
A company stores thousands of individual invoice files in an S3 bucket, and the analyst needs to extract only the 'paid' invoices for a quarterly audit.
Problem
Manually downloading and filtering each file is inefficient and prone to error.
How to use
Input the list of invoice object keys, set the filter column to 'status', the operator to 'equals', and the value to 'paid'.
filterColumn: status, filterOperator: equals, filterValue: paid, outputFormat: csvOutcome
The tool generates a consolidated CSV file containing only the paid invoice records, ready for audit.