BigQuery + Looker Studio is GCP's standard BI stack — you can build a production-grade dashboard for free. This article walks through visualizing GA4 / sales data, accelerating queries with BI Engine, and implementing Calculated Fields and Filter Controls with concrete examples.
-- Sales summary view CREATE OR REPLACE VIEW analytics.sales_dashboard AS SELECT DATE(order_timestamp) AS order_date, product_category, region, COUNT(DISTINCT order_id) AS order_count, SUM(amount) AS revenue, AVG(amount) AS avg_order_value FROM raw.orders WHERE order_timestamp >= TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 730 DAY) GROUP BY 1, 2, 3;
| Use case | Chart |
|---|---|
| Time-series trends | Time Series / Line |
| Category comparison | Bar / Column |
| Composition | Pie / Donut |
| Geography | Geo Map (country / prefecture) |
| Single KPI value | Scorecard (supports period-over-period) |
| Detail table | Table (supports Pivot) |
| Sankey / Heatmap | Community Visualizations |
-- Year-over-year sales
(revenue - revenue_yoy) / revenue_yoy * 100
-- First day of the month
DATE_TRUNC(order_date, MONTH)
-- Aggregate by category
CASE
WHEN product_category IN ('Electronics', 'Computers') THEN 'Tech'
WHEN product_category IN ('Books', 'Music') THEN 'Media'
ELSE 'Other'
END
-- Rough LTV
revenue / NULLIF(unique_customers, 0)| Item | Looker Studio | Looker (Enterprise) | Tableau | Power BI |
|---|---|---|---|---|
| Price | Free | Per-user pricing | $70/user/month | $10/user/month |
| BQ native | Excellent | Excellent | Good | Good |
| Semantic layer | — | LookML | — | Dataset |
| Expressiveness | Standard | Standard | Highest | High |
| Embedding | iframe | Embed SDK | Tableau Server | Power BI Embedded |
Is Looker Studio free?
Core features are completely free (formerly Data Studio). Looker Studio Pro costs $9/user/month and adds team management, Vertex AI integration, and Custom Domain.
What does BigQuery integration cost?
Looker Studio itself is free, but BigQuery query charges apply. Using BI Engine waives those charges and speeds queries up — the standard playbook.
What is BI Engine?
BigQuery's in-memory acceleration. Reserve capacity at $30/GB/month and Looker Studio queries return in under a second with no query charges. Essential for BI dashboards.
Calculated Field or Custom Query — which should I use?
Simple calculations → Calculated Field. Complex JOINs/window functions → BigQuery Custom Query or View. Pre-computing with a Materialized View is also recommended.
How do I set up drill-down?
Define a dimension hierarchy (year → month → day) and enable drill-down on the chart. Looker Studio Pro adds more advanced Hierarchies.
What is a Filter Control?
The filter UI at the top of a dashboard. Place date, dimension, and metric switches that apply to multiple charts at once.
What is the best tool to visualize BigQuery data?
Standard: Looker Studio (free, direct connect). Enterprise: Looker (LookML). Ad-hoc: Connected Sheets (Google Sheets). Notebook: Vertex AI Workbench.
How does it compare with other BI tools (Tableau / Power BI)?
Tableau / Power BI offer richer visuals but cost more. Looker Studio is free and simpler. For native GA4 / Ads / BQ integration, Looker Studio wins hands down.
Related Articles: BI / Data Analytics
BigQuery Cost Optimization: 50 Practical Tips (2026)
Practical BigQuery cost wins — partitioning, clustering, materialized views, slot vs. on-demand, common gotchas.
ADP SQL & Looker Patterns (2026)
ADP-focused SQL and Looker fundamentals — analytics functions, basic LookML, dashboard design.
Google Cloud Certification Roadmap (2026)
Choose your GCP certification path — Foundational, Associate, Professional. Career-aligned roadmap.
Compute & GKE Cost Optimization Patterns (2026)
Compute Engine and GKE cost reduction — spot, sustained use discounts, right-sizing, common wins.
Google Cloud, Looker, and Looker Studio are trademarks of Google LLC. For the latest information, see the official Looker Studio site.
Practice with certification-focused question sets
View GCP Exam PrepNicheeLab Editorial Team
NicheeLab editorial team focused on data engineering and cloud certification learning. Content is structured around practical study needs and official exam domains.
Google Cloud Certification Roadmap (2026)
Choose your GCP certification path — Foundational, Associate...
CDL Cloud Digital Leader: Complete Exam Guide (2026)
Pass the Cloud Digital Leader exam — cloud business value, G...
GAIL Generative AI Leader: Complete Exam Guide (2026)
Pass the Generative AI Leader exam — Gemini, Vertex AI, Work...
Vertex AI Fundamentals for GCP Certs (2026)
Vertex AI basics every cert candidate needs — Workbench, Pip...
Associate Cloud Engineer (ACE): Complete Guide (2026)
Pass the Associate Cloud Engineer exam — Console, gcloud, pr...