0
0
Power BIbi_tool~10 mins

Why clean data drives accurate reports in Power BI - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to remove duplicate rows from the dataset.

Power BI
CleanData = DISTINCT([1])
Drag options to blanks, or click blank then click option'
AFILTER
BSales
CSUMMARIZE
DCALCULATE
Attempts:
3 left
💡 Hint
Common Mistakes
Using a function name instead of a table name.
Confusing DISTINCT with aggregation functions.
2fill in blank
medium

Complete the DAX formula to calculate the total sales after filtering out blank values.

Power BI
TotalSales = CALCULATE(SUM(Sales[Amount]), FILTER(Sales, Sales[Amount] [1] BLANK()))
Drag options to blanks, or click blank then click option'
A=
B<
C<>
D>
Attempts:
3 left
💡 Hint
Common Mistakes
Using '=' which would keep only blank values.
Using '>' or '<' which may exclude valid zero or positive values.
3fill in blank
hard

Fix the error in the DAX formula to calculate average sales correctly.

Power BI
AverageSales = AVERAGE([1][Amount])
Drag options to blanks, or click blank then click option'
ASalesData
BAmount
CSalesTable
DSales
Attempts:
3 left
💡 Hint
Common Mistakes
Using a wrong or non-existent table name.
Using the column name alone without table reference.
4fill in blank
hard

Fill both blanks to create a calculated column that flags sales above average.

Power BI
SalesFlag = IF(Sales[Amount] [1] Sales[AverageAmount], [2], "Below Average")
Drag options to blanks, or click blank then click option'
A>
B"Above Average"
C"High"
D<
Attempts:
3 left
💡 Hint
Common Mistakes
Using '<' instead of '>' for comparison.
Returning a wrong string for the true condition.
5fill in blank
hard

Fill all three blanks to create a measure that counts non-blank sales records in 2023.

Power BI
SalesCount2023 = CALCULATE(COUNTROWS([1]), FILTER([2], YEAR([3][Date]) = 2023 && NOT(ISBLANK([3][Amount]))))
Drag options to blanks, or click blank then click option'
ASales
DSalesData
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing different table names causing errors.
Not using ISBLANK to exclude blank amounts.