Which of the following best explains why data transformation improves data quality in Business Intelligence?
Think about how data needs to be consistent and clean for accurate reports.
Data transformation cleans and standardizes data, fixing errors and inconsistencies, which ensures the data used for analysis is accurate and reliable.
You have raw sales data from multiple stores with different date formats and missing values. What transformation step should you apply first to ensure quality?
Focus on making dates consistent and handling missing data carefully.
Standardizing date formats and filling missing values ensures the data is consistent and complete, which is essential for accurate analysis.
Given a sales table with some missing or zero sales amounts, which DAX measure correctly calculates the total sales excluding zero or blank amounts?
Total Clean Sales = CALCULATE(SUM(Sales[Amount]), Sales[Amount] > 0)Think about filtering out zero or blank sales before summing.
Option C filters the sales to include only amounts greater than zero before summing, ensuring clean total sales.
Which visualization best helps identify missing or inconsistent data in a dataset?
Think about how to visually spot where data is missing or inconsistent.
A heatmap highlighting missing values per column clearly shows data quality issues by color intensity.
Consider this Power Query M code snippet that tries to replace nulls with zero in a sales amount column. Which option correctly fixes the error?
Table.ReplaceValue(Source, null, 0, Replacer.ReplaceValue, {"SalesAmount"})Check the correct replacer function and column reference format.
Option B uses the correct Replacer.ReplaceValue function and passes the column name as a list, which is required.