Challenge - 5 Problems
Time Intelligence Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
β dax_lod_result
intermediate2:00remaining
Calculate Year-To-Date Sales Using TOTALYTD
Given a Sales table with a Date column and a SalesAmount column, what is the result of this measure on 2023-03-15?
Sales YTD = TOTALYTD(SUM(Sales[SalesAmount]), Sales[Date])
Attempts:
2 left
π‘ Hint
TOTALYTD sums values from the start of the year up to the given date.
β Incorrect
TOTALYTD calculates the sum from the first day of the year to the specified date, so it includes January 1 to March 15 sales.
β dax_lod_result
intermediate2:00remaining
Calculate Quarter-To-Date Sales Using TOTALQTD
What does this measure return on 2023-05-10?
Sales QTD = TOTALQTD(SUM(Sales[SalesAmount]), Sales[Date])
Attempts:
2 left
π‘ Hint
TOTALQTD sums values from the start of the quarter to the given date.
β Incorrect
TOTALQTD sums SalesAmount starting from the first day of the quarter (April 1) to May 10, 2023.
β dax_lod_result
advanced2:00remaining
Calculate Month-To-Date Sales Using TOTALMTD with Filter
Consider this measure:
What is the result on 2023-07-20?
Sales MTD Filtered = TOTALMTD(SUM(Sales[SalesAmount]), Sales[Date], Sales[Region] = "West")
What is the result on 2023-07-20?
Attempts:
2 left
π‘ Hint
TOTALMTD sums values from the start of the month to the given date, applying the filter.
β Incorrect
The measure sums SalesAmount only for Region West from July 1 to July 20, 2023.
β visualization
advanced2:00remaining
Best Visualization to Compare YTD, QTD, and MTD Sales
You want to show Year-To-Date, Quarter-To-Date, and Month-To-Date sales side by side for each product category. Which visualization type is best?
Attempts:
2 left
π‘ Hint
You want to compare three values side by side for each category.
β Incorrect
A clustered column chart clearly shows YTD, QTD, and MTD sales side by side for each product category, making comparison easy.
π§ Conceptual
expert3:00remaining
Understanding Behavior of TOTALYTD with Non-Standard Fiscal Year
Your companyβs fiscal year starts on April 1. You use TOTALYTD without specifying the year-end date. What will happen when calculating YTD sales on June 15, 2023?
Attempts:
2 left
π‘ Hint
By default, TOTALYTD assumes calendar year starting January 1.
β Incorrect
Without specifying the fiscal year-end date, TOTALYTD uses the calendar year starting January 1, so it sums from January 1, 2023, to June 15, 2023.