Imagine you have a sales report showing total revenue by region. Some sales records have missing or incorrect region names. What is the most likely effect on the report?
Think about how missing or wrong data affects grouping and totals.
If region names are missing or wrong, the report groups data incorrectly. This causes some regions to have wrong totals or be missing, but the overall total revenue remains correct because all sales are counted.
You have a Sales table with some missing values in the Quantity column. Which DAX measure correctly calculates total quantity, treating missing values as zero?
Total Quantity = SUMX(Sales, IF(ISBLANK(Sales[Quantity]), 0, Sales[Quantity]))Think about how to replace blanks with zero before summing.
SUM ignores blanks, so missing quantities are skipped. Using SUMX with IF(ISBLANK()) replaces blanks with zero, ensuring all rows contribute correctly.
You have a dashboard showing sales by product category. Some categories show unexpectedly low sales. Which visualization best helps identify if missing or incorrect category data is causing this?
Look for a way to spot missing or uncategorized data clearly.
A bar chart including an 'Unknown' or blank category highlights missing or incorrect category data, helping identify data quality issues affecting sales totals.
A sales report shows total revenue twice as high as expected. You suspect duplicate sales records. Which step will best help confirm this issue?
Think about how to find duplicates in data.
Counting sales order IDs reveals duplicates if any ID appears more than once, confirming duplicate records causing inflated totals.
Your company receives monthly sales data from multiple sources. Some sources have inconsistent product names and missing sales dates. What is the best sequence of steps to clean data before reporting?
Consider which cleaning steps depend on others and the order that prevents errors.
Standardizing product names first ensures consistent grouping. Filling missing dates next avoids errors in date-based analysis. Removing duplicates last ensures no repeated records remain before reporting.