1. Monthly Sales Summary
Sales AnalystBackground
A sales analyst has a raw CSV file containing thousands of individual transactions with columns for 'Date', 'Region', and 'Amount'.
Problem
The analyst needs to know the total revenue generated per region for each month.
How to use
Set 'Group By Columns' to 'Month,Region' and 'Aggregation Options' to 'Amount:sum'.
[{"column": "Amount", "function": "sum", "as": "Total_Revenue"}]Outcome
A clean, summarized table showing the total revenue for every region, broken down by month.