Agents
Enterprise revenue Q4 review

How much revenue did we close from enterprise customers last quarter? Break it down by top accounts.

11:42 AM

Galaxy closed $2.43M in revenue from enterprise accounts in Q4 2026 1, up 18.4% quarter-over-quarter 2.

This came from 12 enterprise customers 3, with the top three contributing 41% of the total:

- Atlas Technologies — $412K (17.0%)

- Vertex Solutions — $298K (12.3%)

- Acme Corporation — $287K (11.8%)

The tier classification is based on the customer.tier='enterprise' flag synced from Salesforce. Account names are shown in full because your role (Admin) has unmasked access — analysts would see partial company names.

Sources 3 citations · 782 rows
1
SUM(order.total_usd) WHERE quarter = 'Q4 2026' Aggregated across 412 order records
412 rows
2
SUM(order.total_usd) WHERE quarter = 'Q3 2026' QoQ comparison baseline
358 rows
3
Customer ⨝ Order WHERE Customer.tier = 'enterprise' Joined via resolved customer_id
12 rows
Generated SQL
SELECT
  customer.name,
  SUM(order.total_usd) AS revenue,
  COUNT(DISTINCT order.id) AS order_count
FROM customer
JOIN order ON order.customer_id = customer.id
WHERE customer.tier = 'enterprise'
  AND order.created_at >= '2026-10-01'
  AND order.created_at <  '2027-01-01'
GROUP BY customer.id, customer.name
ORDER BY revenue DESC
LIMIT 100;
Mask PII Skipped Admin role exempt
Audit revenue access Applied Logged to audit trail
740ms · 412 tokens
11:42 AM ·

Which of those 12 customers have active sync errors right now?

11:44 AM

2 of 12 enterprise customers currently have at least one source in a failed state 1:

- Acme Corporation — HubSpot connector: auth_token_expired, last successful sync 2h 14m ago

- Vertex Solutions — BigQuery connector: quota_exceeded, last successful sync 4h 47m ago

Both failures are upstream of the Customer LTV workbook and the Marketing → Reverse ETL sync to Hubspot. I can re-authenticate HubSpot or raise the BigQuery quota — want me to draft a ticket?

Sources 1 citations · 2 rows
1
source.status = 'FAILED' WHERE source.customer_id IN (...) Joined active enterprise customers against sync state
2 rows
Generated SQL
SELECT
  customer.name,
  source.label,
  source.last_error,
  age(now(), source.last_success_at) AS staleness
FROM source
JOIN customer ON source.customer_id = customer.id
WHERE source.status = 'FAILED'
  AND customer.tier = 'enterprise'
  AND customer.id IN (:top_enterprise_ids)
ORDER BY source.last_success_at ASC;
Audit source access Applied Logged with role context
380ms · 218 tokens
11:44 AM ·
Suggested
Ask anything about your data…
ADMIN
Responses respect your role's permissions. PII is masked by policy.
Model: galaxy-rag-v2