Skip to content

Transforming data

This page shows you the operations you use to shape a query into exactly the answer you want. You add them step by step, point-and-click — no SQL.

OperationWhat it does
Choose ColumnsPick which columns appear in your results.
Filter RowsKeep only the rows that match a condition (this year, a region, amount > 0).
Group & SummariseGroup by a category and calculate totals, averages, or counts.
Add New ColumnCreate a calculated column from your existing ones using a formula.
Join TableCombine two tables on a matching column (orders + customers).
Append TableStack the rows of another table below your current data.
Custom OperationAdvanced: apply a custom transformation when the built-ins aren’t enough.

You can add, reorder, and remove operations freely, and the result table updates after each one — so you always see what your change did.

To get top 5 customers by sales this year:

  1. Filter Rows — date is this year.
  2. Group & Summarise — group by customer, total the amount.
  3. Choose Columns — keep customer and total.
  4. Sort by total and keep the top few.

Add New Column is the quiet workhorse — use it for things your raw data doesn’t store directly, like profit = revenue − cost or days overdue. Build it once in the query and every chart from that query gets it.