You have a sales dataset with a Sales Amount and a Date field. Using Tableau's calculated fields, which formula correctly calculates the year-over-year sales growth percentage?
Think about how many periods back you need to look to compare the same month last year.
Option A correctly uses LOOKUP with an offset of -12 to compare the current month's sales to the same month in the previous year, assuming monthly data.
You want to show year-over-year sales trends for multiple years in a clear and easy-to-understand way. Which type of Tableau visualization is best suited for this?
Think about how to show trends over time and compare multiple years clearly.
A line chart with separate lines for each year allows easy comparison of monthly sales trends across years, making year-over-year analysis intuitive.
What is a common challenge when calculating year-over-year metrics in Tableau for datasets with missing months or irregular dates?
Consider how missing data affects relative period calculations.
When months are missing, LOOKUP with fixed offsets may compare to wrong rows, leading to incorrect year-over-year values. Data must be complete or handled carefully.
Which data model design best supports efficient year-over-year analysis in Tableau?
Think about how missing dates affect time comparisons.
A flat table with all dates ensures continuous time series, allowing accurate year-over-year calculations and visualizations without gaps.
A Tableau user created this calculated field for year-over-year sales growth:(SUM([Sales]) - LOOKUP(SUM([Sales]), -1)) / LOOKUP(SUM([Sales]), -1)
But the results are incorrect when viewing monthly data. What is the most likely cause?
Consider what the offset number in LOOKUP means in a monthly time series.
Using LOOKUP with offset -1 compares the current month to the previous month, not the same month last year. For year-over-year, offset should be -12 for monthly data.