Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning Tableau 10 - Second Edition

You're reading from  Learning Tableau 10 - Second Edition

Product type Book
Published in Sep 2016
Publisher Packt
ISBN-13 9781786466358
Pages 432 pages
Edition 2nd Edition
Languages

Table of Contents (17) Chapters

Learning Tableau 10 Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Creating Your First Visualizations and Dashboard Working with Data in Tableau Moving from Foundational to More Advanced Visualizations Using Row-Level, Aggregate, and Level of Detail Calculations Table Calculations Formatting a Visualization to Look Great and Work Well Telling a Data Story with Dashboards Deeper Analysis – Trends, Clustering, Distributions, and Forecasting Making Data Work for You Advanced Visualizations, Techniques, Tips, and Tricks Sharing Your Data Story

Performance considerations


When working with a small dataset and an efficient database, you often won't notice inefficient calculations. With larger datasets, the efficiency of your calculations can start to make a fairly dramatic difference to the speed at which a view is rendered.

Here are some tips for getting the most efficiency in your calculations:

  • Boolean and numeric calculations are faster than string calculations. If possible, avoid string manipulation and use aliasing or formatting to provide user-friendly labels. For example, don't write this code: IF [value] == 1 THEN "Yes" ELSE "No" END. Instead, simply write [value] == 1 and then edit the aliases of the field and set True to "Yes" and False to "No".

  • Always look for ways to increase the efficiency of a calculation. If you find yourself writing a long IF...ELSEIF statement with lots of conditions, see if there are one or two conditions that you can check first to eliminate checks of all the other conditions. For example, let's consider...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}