0
0
Power BIbi_tool~5 mins

TOTALYTD, TOTALQTD, TOTALMTD in Power BI - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner

What does the TOTALYTD function do in Power BI?

TOTALYTD calculates the total of a measure from the start of the year up to the current date in the filter context.

Click to reveal answer
beginner

How is TOTALQTD different from TOTALYTD?

TOTALQTD sums a measure from the start of the current quarter up to the current date, while TOTALYTD sums from the start of the year.

Click to reveal answer
beginner

What is the purpose of TOTALMTD in Power BI?

TOTALMTD calculates the total of a measure from the start of the current month up to the current date.

Click to reveal answer
intermediate

Write a simple DAX formula using TOTALYTD to calculate year-to-date sales.

Total Sales YTD = TOTALYTD(SUM(Sales[Amount]), Dates[Date])<br>This sums sales from the start of the year to the current date.

Click to reveal answer
beginner

Why do TOTALYTD, TOTALQTD, and TOTALMTD require a date column?

They need a date column to know the time range for calculation, like year start, quarter start, or month start up to the current date.

Click to reveal answer

What does TOTALQTD calculate?

ATotal from the start of the quarter to the current date
BTotal from the start of the year to the current date
CTotal from the start of the month to the current date
DTotal for the entire year

Which function would you use to get sales totals from the start of the month to today?

ATOTALYTD
BTOTALQTD
CTOTALMTD
DSUM

What is required as the second argument in TOTALYTD?

AA numeric value
BA text string
CA filter expression
DA date column

Which of these is NOT true about TOTALYTD?

AIt sums values from the start of the year
BIt sums values from the start of the month
CIt requires a date column
DIt returns a running total up to the current date

What happens if the date column passed to TOTALMTD has missing dates?

AThe calculation ignores missing dates and sums available dates
BThe function sums only the first date
CThe function sums all dates regardless
DThe function returns an error

Explain how TOTALYTD, TOTALQTD, and TOTALMTD help in analyzing sales data over time.

Think about how these functions show progress over different time periods.
You got /5 concepts.

    Describe a simple example of using TOTALQTD in a sales report.

    Imagine you want to see how much sales happened this quarter so far.
    You got /4 concepts.