Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learning Tableau

You're reading from   Learning Tableau Leverage the power of Tableau 9.0 to design rich data visualizations and build fully interactive dashboards

Arrow left icon
Product type Paperback
Published in Apr 2015
Publisher Packt
ISBN-13 9781784391164
Length 340 pages
Edition 1st Edition
Tools
Arrow right icon
Author (1):
Arrow left icon
Joshua N. Milligan Joshua N. Milligan
Author Profile Icon Joshua N. Milligan
Joshua N. Milligan
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. Creating Your First Visualizations and Dashboard FREE CHAPTER 2. Working with Data in Tableau 3. Moving from Foundational to Advanced Visualizations 4. Using Row-level and Aggregate Calculations 5. Table Calculations 6. Formatting a Visualization to Look Great and Work Well 7. Telling a Data Story with Dashboards 8. Adding Value to Analysis – Trends, Distributions, and Forecasting 9. Making Data Work for You 10. Advanced Techniques, Tips, and Tricks 11. Sharing Your Data Story Index

An overview of advanced fixes for data problems

In addition to the techniques shown in the previous sections, there are some additional possibilities for dealing with data structure issues. It is outside the scope of this book to develop these concepts fully. However, given some familiarity with these approaches, you broaden your ability to deal with challenges as they arise:

  • Custom SQL: This can be used in data connection to resolve some data problems. Custom SQL is not an option for all data sources but is for many relational databases and for legacy JET driver connections. Consider a custom SQL script that takes the wide table of country populations mentioned earlier in this chapter and restructures it into a tall table:
    SELECT [Country Name],[1960] AS Population, 1960 AS Year
    FROM Countries
    
    UNION ALL
    
    SELECT [Country Name],[1961] AS Population, 1961 AS Year
    FROM Countries
    
    UNION ALL 
    
    SELECT [Country Name],[1962] AS Population, 1962 AS Year
    FROM Countries
    ...
    ...

    It might be a little...

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 $19.99/month. Cancel anytime
Banner background image