You want to create a scatter plot in Tableau to analyze the relationship between Sales and Profit for different Regions. Which of the following setups will correctly create a scatter plot showing each region as a point?
Remember, for a scatter plot, you need two numeric measures on the axes and a dimension to identify points.
Option D correctly places Sales and Profit on the axes and uses Region on Detail to show each region as a separate point. Other options either misplace dimensions or use filters/tooltips which do not create distinct points.
You want to create a scatter plot showing Customer Count on X-axis and Average Sales per Customer on Y-axis. Which DAX measure correctly calculates the average sales per customer?
Average Sales per Customer = DIVIDE(SUM(Sales[SalesAmount]), DISTINCTCOUNT(Sales[CustomerID]))
Use DIVIDE to safely handle division and DISTINCTCOUNT to count unique customers.
Option A correctly divides total sales by the distinct number of customers. Option A uses COUNT which counts all rows, not unique customers. Option A divides average sales by distinct customers, which is incorrect. Option A multiplies instead of dividing.
When adding color to a scatter plot to represent a categorical variable with many categories, what is the best practice to ensure clarity and accessibility?
Think about how too many colors can confuse viewers and accessibility for colorblind users.
Option B is best because it reduces clutter by grouping minor categories and uses a palette accessible to colorblind users. Option B can overwhelm and confuse. Option B lacks consistency and accessibility. Option B oversimplifies and misrepresents categories.
You created a scatter plot with Sales on X-axis and Profit on Y-axis, but many points overlap making it hard to see individual data points. What is the best way to fix this in Tableau?
Think about how to separate points that have the same coordinates.
Option A adds jitter to spread overlapping points slightly, improving visibility. Option A makes points bigger but does not separate overlaps. Option A reduces points but loses detail. Option A changes the plot type incorrectly.
You are designing a dashboard with a scatter plot showing Sales vs Profit Margin by Product Category. You want to allow users to filter by Region and Year. Which approach ensures the filters correctly update the scatter plot without performance issues?
Think about how Tableau processes filters and how to optimize large datasets.
Option C uses context filters to limit data early, improving performance. Option C can cause slow loading with large data. Option C is complex and inefficient. Option C risks performance issues by loading all data.