-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Labels
Description
Course
data-engineering-zoomcamp
Question
How do you connect BigQuery with BI tools like Looker Studio or Tableau?
Answer
BigQuery can be directly connected to popular BI tools such as
Looker Studio (Google Data Studio) and Tableau to build dashboards and reports.
Connecting BigQuery to Looker Studio
Steps:
- Go to Looker Studio (datastudio.google.com)
- Click Create → Data source → BigQuery
- Select the project, dataset, and table
- Click Connect
- Create charts and dashboards
Best choice for:
- Quick dashboards
- Simple visualizations
- Tight integration with Google Cloud
Connecting BigQuery to Tableau
Steps:
- Open Tableau Desktop
- Click Connect → To a Server → Google BigQuery
- Sign in with your Google account
- Select a project and dataset
- Choose a table or use Custom SQL
Example (Custom SQL):
SELECT
DATE(pickup_datetime) AS date,
COUNT(*) AS trips,
SUM(total_amount) AS revenue
FROM `project.dataset.trips`
WHERE DATE(pickup_datetime) >= DATE_SUB(CURRENT_DATE(), INTERVAL 30 DAY)
GROUP BY date;Checklist
- I have searched existing FAQs and this question is not already answered
- The answer provides accurate, helpful information
- I have included any relevant code examples or links