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.
-- 売上集計 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 |
-- 売上前年比
(revenue - revenue_yoy) / revenue_yoy * 100
-- 月の最初の日
DATE_TRUNC(order_date, MONTH)
-- カテゴリ集約
CASE
WHEN product_category IN ('Electronics', 'Computers') THEN 'Tech'
WHEN product_category IN ('Books', 'Music') THEN 'Media'
ELSE 'Other'
END
-- 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 コスト最適化 50 のテクニック|2026 年最新版 (GCP)
Google BigQuery のコスト最適化テクニック 50 連発。パーティション・クラスタリング・Editions・BI Engine・Materialized View・Storage Write API・Custom Cost Controls・INFORMATION_SCHEMA 分析を 2026 年最新版で網羅。50〜90% 削減事例も解説。
GCP ADP 試験対策|SQL 必修パターン・Looker Studio・Dataform 完全ガイド
Google Cloud Associate Data Practitioner (ADP) の SQL 必修パターン、Looker Studio / Looker / Dataform の使い分け、BigQuery 実装テクニック、80 時間合格プランを解説。
Google Cloud (GCP) 認定資格ロードマップ 2026 完全版|全 15 試験を体系化
Google Cloud 認定資格 全 15 試験 (Foundational 2 + Associate 3 + Professional 10) の 2026 年版ロードマップ。14/15 試験が日本語対応、Generative AI Leader (2025-05 新)・PMLE 2026-06 新版、AWS/Azure/GCP シェア比較、役割別ルートを日本語で整理。
Compute Engine / GKE コスト最適化ガイド|Spot・CUD・Recommender (GCP)
Google Compute Engine と GKE のコスト最適化を完全網羅。Spot VM、Sustained Use Discount、Flex CUD、Recommender API、Autopilot vs Standard、HPA/VPA/CA、Custom Machine Type、GPU/TPU 最適化を 2026 年最新版で解説。
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...