Introduction
Tableau is a data visualization and business intelligence tool that connects to one or more data sources and lets a user build interactive charts and dashboards through a drag-and-drop interface, rather than writing plotting code by hand for every view an analysis requires.
Cricket analogy: A team analyst doesn't want to write custom code every time they need to compare batting averages across a season; Tableau is a data visualization tool that connects directly to a dataset and lets an analyst build interactive charts and dashboards by dragging fields onto a canvas rather than programming each view from scratch.
Explanation
The core Tableau workflow starts with connecting to a data source, such as a spreadsheet, a database, or a cloud data warehouse, and then dragging dimension fields (categorical values like names or regions) and measure fields (numeric values to aggregate) onto rows and columns shelves, with Tableau automatically choosing and rendering an appropriate chart type based on what has been dragged.
Cricket analogy: Building a view in Tableau means connecting to a data source, such as a season's match-by-match file, and then dragging fields like 'batsman name' and 'runs scored' onto rows and columns shelves, letting the tool render the corresponding chart automatically instead of hand-coding a plotting library.
Beyond individual charts, Tableau lets an analyst combine several views into a dashboard with built-in interactivity: filters let a viewer narrow down what's shown, and actions can link charts together so that clicking a mark in one chart filters or highlights related marks in every other chart on the same dashboard, turning a fixed report into something the end viewer can explore themselves.
Cricket analogy: A dashboard built for a team's board isn't a static printout; clicking one player's bar can filter every other chart on the dashboard to just that player's matches, letting a viewer explore the data themselves, the same interactive filtering and drill-down that makes a Tableau dashboard more useful than a fixed report.
Example
-- Illustrative example: a simple aggregation query similar to
-- what Tableau generates behind the scenes when you drag fields
-- onto a view (dimension + aggregated measure)
SELECT region, SUM(revenue) AS total_revenue
FROM example_sales
GROUP BY region
ORDER BY total_revenue DESC;Analysis
A dashboard built in a single analyst's workbook only creates value once it reaches the people who need to act on it, so Tableau supports publishing dashboards to a shared server or a public gallery so that stakeholders can open the same live, interactive view directly in a browser rather than receiving a static exported image or PDF.
Cricket analogy: Once a dashboard is finished, it still needs to reach the selectors who make decisions; publishing it to a shared server lets every stakeholder open the same live view on their own device, the same distribution mechanism Tableau provides so a finished dashboard doesn't stay locked on one analyst's laptop.
Key Takeaways
- Tableau is a data visualization and business intelligence tool built around connecting to data sources and dragging fields to build views.
- Dimensions are categorical fields (like names or regions); measures are numeric fields that get aggregated.
- Tableau automatically selects a reasonable chart type based on which fields are dragged onto a view.
- Dashboards combine multiple views with filters and actions, allowing interactive exploration rather than a static report.
- Publishing a dashboard to a shared server lets stakeholders view the same live dashboard directly, rather than a static export.
Practice what you learned
1. What is Tableau primarily used for?
2. In Tableau's model, what is a 'measure'?
3. What does a Tableau dashboard action typically do?
4. How does Tableau typically decide what chart type to render?
5. Why would an analyst publish a dashboard to a shared server rather than exporting a static image?
Was this page helpful?
You May Also Like
Charts & When to Use Them
How to match a chart type, such as bar, line, scatter, or pie, to the specific comparison, trend, or relationship the underlying data is meant to show.
What Is EDA
What exploratory data analysis is, why analysts use summary statistics and visuals to understand a dataset before modeling, and what issues it uncovers.
Correlation vs Causation
Why two variables moving together does not mean one causes the other, how confounding variables create misleading correlations, and how causation is tested.