Book Image

Tableau 10 Bootcamp

By : Joshua N . Milligan, Donabel Santos
Book Image

Tableau 10 Bootcamp

By: Joshua N . Milligan, Donabel Santos

Overview of this book

<p>Tableau is a leading visual analytics software that can uncover insights for better and smarter decision-making. Tableau has an uncanny ability to beautify your data, compared to other BI tools, which makes it an ideal choice for performing fast and easy visual analysis.</p> <p>A military camp style fast-paced learning book that builds your understanding of Tableau 10 in no time. This day based learning guide contains the best elements from two of our published books, Learning Tableau 10 - Second Edition and Tableau 10 Business Intelligence Cookbook, and delivers practical, learning modules in manageable chunks. Each chunk is delivered in a "day", and each "day" is a productive day. Each day builds your competency in Tableau. You will increase your competence in integrating analytics and forecasting to enhance data analysis during the course of this Bootcamp.</p> <p>Each chapter presents core concepts and key takeaways about a topic in Tableau and provides a series of hands-on exercises. In addition to these exercises, at the end of the chapter, you will find self-check quizzes and extra drills to challenge you, to take what you learned to the next level. To summarize, this book will equip you with step-by-step instructions through rigorous tasks, practical callouts, and various real-world examples and assignments to reinforce your understanding of Tableau 10.</p>
Table of Contents (16 chapters)
Title Page
Credits
About the Authors
www.PacktPub.com
Customer Feedback
Preface

Creating a top/bottom N filter


By creating a top/bottom N filter, we allow the end users to select whether they want to display the top N countries (that is, countries with the most CO2 emissions) or bottom N countries (that is, countries with the least CO2 emissions). To do this, we need to use a parameter that determines if they went to the top or bottom.

To ascertain which countries belong to the top or bottom, we use the Rank table calculation function. We determine whether the rank sorting is in ascending or descending order using the Country CO2 Rank calculated field. If we select Top ,SUM([CO2 Emission])is sorted in descending order (that is, the most first) and if we select Bottom ,SUM([CO2 Emission]) it is sorted in ascending order (that is, the least first):

Placing the Country CO2 Rank calculated field with the rank calculation as a discrete field between Year and Country Name is an important step to make sure that the ranking works. This can thus limit the scope per year, letting...