You have monthly sales data for 3 years. Which visual will best show sales trends clearly?
Think about which chart type best shows continuous data changes over time.
Line charts are best for showing trends over time because they connect data points smoothly, making it easy to see increases or decreases.
Given a sales table with CustomerSegment and SalesAmount columns, which DAX measure correctly calculates the average sales per segment?
Measure = AVERAGEX(VALUES(Sales[CustomerSegment]), CALCULATE(SUM(Sales[SalesAmount])))
Think about how to calculate average sales per unique segment, not overall average.
Option C uses AVERAGEX over unique segments, summing sales per segment, then averaging those sums. This correctly calculates average sales per segment.
You have a large sales dataset with many columns, but your report only uses a few. What is the best way to optimize the model for performance?
Think about reducing data size and simplifying relationships.
Removing unused columns reduces data size and memory use. Creating only necessary relationships simplifies the model and speeds up queries.
You want to compare sales across product categories and their subcategories in one visual. Which visual type best reveals detailed insights?
Think about how to show detailed breakdowns in a clear, tabular way.
A matrix visual allows easy comparison of categories and subcategories side by side with exact values, revealing deeper insights.
What error does this DAX measure produce?
Measure = CALCULATE(SUM(Sales[SalesAmount]), FILTER(ALL(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))
Measure = CALCULATE(SUM(Sales[SalesAmount]), FILTER(ALL(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))
Check if the DAX syntax is complete and if the functions are used correctly.
The measure correctly calculates cumulative sales by removing date filters and summing sales up to the current max date in context. There is no syntax or runtime error.