The TOTALYTD function is specifically designed to calculate Year-to-Date totals efficiently. Option A uses it correctly with the date column.
Option B filters by today's date but does not reset at the start of the year.
Option C sums sales only for the current year but does not accumulate over the year.
Option D uses DATESYTD inside CALCULATE, which is equivalent but more verbose.
A Line Chart is ideal for showing trends over time because it connects data points in order, making it easy to see increases or decreases month to month.
Stacked Bar Charts are better for comparing parts of a whole but can be cluttered for trends.
Pie Charts do not show time progression well.
Tables show raw data but are not good for spotting trends visually.
Time-based analysis reveals patterns and trends such as seasonality, growth, or decline, which are critical for planning and decision-making.
Option C is incorrect because ignoring seasonal effects can lead to wrong conclusions.
Option C is wrong because sales data does not replace customer feedback.
Option C is false because timing often affects data relevance and interpretation.
Previous Month Sales = CALCULATE(SUM(Sales[SalesAmount]), PREVIOUSMONTH(Sales[Date]))
PREVIOUSMONTH requires a properly marked date table with continuous dates. If the date column is not from a date table or the date table is not marked, the function returns incorrect results.
SUM works fine inside CALCULATE.
Using NEXTMONTH would calculate the next month, not previous.
SalesAmount should be numeric for SUM; converting to text is incorrect.
A clustered column chart with separate measures for current and previous year sales allows easy month-by-month comparison.
Option A's pie chart does not show monthly trends.
Option A combines all years, losing year-over-year comparison.
Option A lacks time intelligence and visual comparison.