Store reports

The break-down Shopify itself can never show: your stores side by side — sales and orders per store, in one currency, on one page.

2 built-in reports — every one opens in the report editor, runs across all connected stores in one currency, and can be saved, exported or scheduled. The query under each report is the whole report — readable, and yours to change.

Total sales by store

The full sales breakdown per store — which shop earns what, in one currency.

FROM sales
  SHOW orders, gross_sales, discounts, sales_reversals, net_sales, shipping_charges, taxes, total_sales
  SINCE startOfDay(-30d) UNTIL today
  GROUP BY store WITH TOTALS
  COMPARE TO previous_period
  ORDER BY total_sales DESC
  LIMIT 1000
  VISUALIZE total_sales TYPE donut

Orders by store

How many orders each store took, with their average order value beside it.

FROM sales
  SHOW orders, average_order_value, total_sales
  SINCE startOfDay(-30d) UNTIL today
  GROUP BY store WITH TOTALS
  COMPARE TO previous_period
  ORDER BY orders DESC
  LIMIT 1000
  VISUALIZE orders TYPE horizontal_bar

FAQ

Do these store reports cover all my Shopify stores? Yes — every report on this page aggregates across all connected stores and converts to one currency. Group by store inside any of them for the per-store split.

Can I change what a report shows? Yes — every report opens in the report editor, where metrics, groupings, filters, date ranges and the chart are all editable, and your version saves to your own library.

Can I get these reports automatically? Yes — any report can be downloaded as CSV or Excel, or scheduled to arrive by email or FTP on the cadence you choose.