0
0
Tableaubi_tool~20 mins

Forecasting in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Forecasting Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
dax_lod_result
intermediate
2:00remaining
Calculate Forecasted Sales for Next Quarter

You have monthly sales data and want to forecast sales for the next quarter using Tableau's built-in forecasting. Which calculated field expression correctly sums the forecasted sales for the next 3 months?

ASUM([Sales]) + 3 * AVG([Sales])
BWINDOW_SUM(SUM([Sales]), 1, 3)
CRUNNING_SUM(SUM([Sales])) + 3
DSUM([Sales]) * 3
Attempts:
2 left
💡 Hint

Think about how to sum values in a forecasted range using window functions.

visualization
intermediate
2:00remaining
Best Visualization for Showing Forecast Accuracy

You want to show how close your sales forecast was to actual sales over the past year. Which visualization type is best suited for this in Tableau?

ALine chart with actual and forecast sales lines over time
BPie chart showing percentage of forecast vs actual sales
CBar chart showing total forecast sales only
DScatter plot of sales vs time
Attempts:
2 left
💡 Hint

Think about how to compare two values over time clearly.

🧠 Conceptual
advanced
2:00remaining
Understanding Seasonality in Forecasting

Why is it important to include seasonality when creating a sales forecast in Tableau?

ABecause seasonality makes the forecast always increase over time
BBecause seasonality removes all random noise from data
CBecause seasonality ignores past sales trends
DBecause sales often follow repeating patterns during certain times of the year, improving forecast accuracy
Attempts:
2 left
💡 Hint

Think about how sales might change during holidays or seasons.

data_modeling
advanced
2:00remaining
Preparing Data for Accurate Forecasting

You have daily sales data with missing dates. What is the best way to prepare your data in Tableau for accurate forecasting?

AFill missing dates with zero sales to maintain continuous time series
BRemove all missing dates from the dataset
CReplace missing dates with average sales of other days
DIgnore missing dates and forecast only on available dates
Attempts:
2 left
💡 Hint

Think about how Tableau expects time series data for forecasting.

🔧 Formula Fix
expert
2:00remaining
Troubleshooting Forecast Errors in Tableau

You created a forecast in Tableau but it shows an error: 'Insufficient data to generate forecast'. What is the most likely cause?

AThe data contains negative sales values
BThe forecast model is set to exponential smoothing instead of linear
CThe data has too few data points or missing continuous dates
DThe worksheet has more than one measure
Attempts:
2 left
💡 Hint

Think about what Tableau needs to create a forecast.