You have a sales dashboard in Tableau. You want the tooltip to show both Sales and Profit values when hovering over a data point.
Which tooltip customization will correctly display both values?
Remember to use the correct syntax for inserting field values inside tooltips.
Option A correctly uses the syntax to insert aggregated values in the tooltip. Option A uses invalid tags. Option A adds an extra field not requested. Option A only shows Sales.
Why is customizing tooltips important in Tableau dashboards?
Think about what tooltips do when you hover over data.
Tooltips provide extra details on demand, helping users understand data points better without adding clutter. Options A, B, and D describe unrelated features.
You want to show the average sales per product category in a tooltip using a Level of Detail (LOD) expression in Tableau.
Which LOD expression correctly calculates this?
LOD expressions use FIXED, INCLUDE, or EXCLUDE to control aggregation levels.
Option D fixes the calculation at the category level and averages sales correctly. Option D sums sales and includes category, which is not average. Option D excludes category, changing the level incorrectly. Option D averages category totals instead of sales per category.
Your tooltip shows profit values that are too high. You suspect the aggregation is wrong.
Which of these tooltip expressions is causing the error?
ATTR returns a single value if all rows have the same value, else it shows an asterisk.
Using ATTR([Profit]) in a tooltip aggregates incorrectly when multiple rows exist, causing misleading values. SUM or AVG are appropriate aggregations for profit. MIN is valid but shows minimum, not total.
You want a tooltip that shows the text "High Sales" if sales are above 100,000 and "Low Sales" otherwise.
Which calculated field expression will produce this dynamic tooltip text?
Remember to aggregate sales before comparing to a threshold in Tableau calculated fields.
Option B correctly aggregates sales with SUM before comparison. Option B compares row-level [Sales], which may be invalid in tooltip context. Option B uses CASE WHEN syntax, which Tableau does not support. Option B uses AVG which changes logic.