The FIXED LOD expression calculates the sum of sales fixed at the region level, ignoring other dimensions like date filters. INCLUDE and EXCLUDE adjust the level of detail differently, and SUM([Sales]) respects all filters.
Profit Ratio defined as SUM([Profit]) / SUM([Sales]). Which visualization best shows the profit ratio by product category with clear comparison?A bar chart with product categories on the x-axis and profit ratio on the y-axis clearly compares the ratio across categories. Stacked bars and pie charts do not show ratios well, and line charts are better for trends over time.
Option B uses ZN() to replace nulls with zero, preventing errors for the first year. It calculates the difference between current and previous year sales divided by previous year sales, which is the correct formula for year-over-year growth.
SUM([Sales]) / COUNTD([Customer ID]). However, the result is incorrect when filters are applied. What is the main reason?SUM([Sales]) / COUNTD([Customer ID])
Filters can reduce the number of customers counted but also reduce sales sum differently, causing incorrect averages. Using FIXED LOD expressions can fix this by fixing the denominator or numerator at the desired level.
Option C uses RANK_PERCENTILE to rank customers by sales and flags those with percentile rank 0.9 or higher as top 10%. Option C reverses the logic, and options A and D use invalid functions or syntax.