Recall & Review
beginner
What is a Date Table in Power BI?
A Date Table is a table that contains a list of dates and related columns like year, month, day, and quarter. It helps organize and analyze data by time periods.
Click to reveal answer
beginner
Why do we need a Date Table in Power BI reports?
A Date Table allows you to create time-based calculations like year-to-date or month-to-date. It also helps with filtering and grouping data by dates correctly.
Click to reveal answer
beginner
Which DAX function can create a list of dates for a Date Table?
The DAX function
CALENDAR(StartDate, EndDate) creates a continuous list of dates between two dates.Click to reveal answer
intermediate
How do you add Year and Month columns to a Date Table in Power BI?
You can add calculated columns using DAX like
Year = YEAR([Date]) and Month = FORMAT([Date], "MMMM") to show the year and month names.Click to reveal answer
intermediate
What is the benefit of marking a table as a Date Table in Power BI?
Marking a table as a Date Table tells Power BI to use it for time intelligence calculations, improving performance and accuracy in date-based analysis.
Click to reveal answer
Which DAX function creates a continuous list of dates for a Date Table?
✗ Incorrect
CALENDAR(StartDate, EndDate) creates a list of dates between the start and end dates.
Why should you mark a table as a Date Table in Power BI?
✗ Incorrect
Marking a table as a Date Table enables Power BI to use it for time intelligence calculations.
Which column would you add to a Date Table to show the month name?
✗ Incorrect
FORMAT([Date], "MMMM") returns the full month name like January, February.
What is the main purpose of a Date Table?
✗ Incorrect
A Date Table organizes dates and related info to help analyze data over time.
Which DAX function would NOT be used to create a Date Table?
✗ Incorrect
SUM() is for adding numbers, not creating date lists.
Explain how to create a basic Date Table in Power BI using DAX.
Think about generating dates and adding useful date parts.
You got /3 concepts.
Describe why a Date Table is important for time intelligence in Power BI.
Consider how dates help analyze data over time.
You got /3 concepts.