1. Calculate Order Totals
Data AnalystBackground
An analyst has a sales export containing 'price' and 'quantity' columns but lacks a 'total' column for reporting.
Problem
Manually calculating totals for thousands of rows is error-prone and inefficient.
How to use
Upload the sales CSV and use the 'add_column' operation to compute the total.
[{"type": "add_column", "new_column": "total", "formula": "price * quantity"}]Outcome
A new 'total' column is appended to the CSV, containing the product of price and quantity for every row.