jellyrows
← All demo reports

Executive snapshot

One report, four charts — the multi-query spine. Headline number, funnel, channels, and geography share one page.

Running…

The Monday dashboard

One report, many tiles — every chart below shares the page and its parameters. Half-width tiles sit side by side; the table runs full width.

Orders by status

Running…

Revenue by channel, last 90 days

Running…

Where refunds come from

Running…
View SQL
SELECT date_trunc('month', created_at)::date AS month,
       round(sum(total)) AS revenue
  FROM sample.orders
 WHERE status = 'completed'
   AND created_at >= date_trunc('month', now()) - interval '1 month'
 GROUP BY 1 ORDER BY 1 DESC