You have a bar chart showing sales by product category. Which color encoding choice helps viewers easily distinguish categories without confusion?
Think about how easy it is to tell categories apart by color.
Distinct, bright colors with high contrast make categories easy to differentiate. Using shades of the same color or gradients can confuse viewers because colors look similar.
You want to create a DAX measure that assigns a color label based on total sales: 'Low' for sales < 1000, 'Medium' for sales between 1000 and 5000, and 'High' for sales > 5000. Which measure produces the correct output?
Color Category = SWITCH(TRUE(), SUM(Sales[Amount]) < 1000, "Low", SUM(Sales[Amount]) <= 5000, "Medium", SUM(Sales[Amount]) > 5000, "High")
Check the boundary conditions carefully for each range.
Option D correctly uses nested IF statements with proper boundary checks: <1000 for Low, <=5000 for Medium, else High. Option D has overlapping conditions causing incorrect results. Options B and D have incorrect boundary operators.
What is the main reason to limit the number of colors used in a dashboard's color encoding?
Think about how people perceive colors and information.
Using too many colors can overwhelm viewers, making it hard to distinguish categories and reducing clarity. Simpler color schemes improve readability and understanding.
This Tableau calculated field is intended to assign colors based on profit: 'Green' if profit > 0, 'Red' if profit < 0, and 'Gray' if profit = 0. What is wrong with this calculation?
IF [Profit] > 0 THEN 'Green' ELSEIF [Profit] < 0 THEN 'Red' ELSE 'Gray'
IF [Profit] > 0 THEN 'Green' ELSEIF [Profit] < 0 THEN 'Red' ELSE 'Gray' END
Check the syntax rules for IF statements in Tableau.
Tableau requires an END keyword to close IF statements. Without END, the calculation will cause a syntax error. ELSEIF is valid in Tableau, and color names as strings are allowed.
You are designing a dashboard for users including those with color vision deficiencies. Which approach best ensures your color encoding is accessible?
Think about how to help all users understand the data, not just those without color issues.
Colorblind-friendly palettes combined with shape or pattern differences help all users distinguish data. Using only red and green excludes colorblind users. Similar shades or random colors reduce clarity and accessibility.