Complete the code to set a color palette that is friendly for colorblind users in Tableau.
SET COLOR PALETTE TO [1]The 'Colorblind Safe' palette uses colors that are distinguishable by people with common types of color blindness.
Complete the code to add alternative text for a Tableau dashboard image for screen readers.
ADD ALT TEXT '[1]' TO IMAGE
Alternative text should describe the image meaningfully, like 'Dashboard overview'.
Fix the error in the code to ensure text contrast meets accessibility standards.
SET TEXT COLOR TO [1] ON BACKGROUND COLOR #FFFFFF
Black (#000000) text on white background (#FFFFFF) provides high contrast for readability.
Fill both blanks to create a color rule that highlights values greater than 100 in red and others in green.
IF value [1] 100 THEN COLOR = '[2]' ELSE COLOR = 'green'
The rule uses '>' to check if value is greater than 100, then sets color to 'red'.
Fill both blanks to create a calculated field that returns 'High', 'Medium', or 'Low' based on score thresholds.
IF score [1] 80 THEN 'High' ELSEIF score [2] 50 THEN 'Medium' ELSE 'Low'
The first condition checks if score is greater than 80 for 'High'. The second checks if score is less than or equal to 50 for 'Medium'. Otherwise, it's 'Low'.