0
0
Google Sheetsspreadsheet~20 mins

Why clean data enables analysis in Google Sheets - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
πŸŽ–οΈ
Data Cleaning Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate
2:00remaining
Identify the impact of inconsistent date formats on analysis

You have a sales data sheet where the Date column contains dates in mixed formats: some as MM/DD/YYYY, others as text like January 5, 2024. What problem will this cause when you try to calculate monthly sales totals?

AThe totals will be correct but the chart colors will be wrong.
BThe sheet will automatically convert all dates correctly, so no problem occurs.
CThe monthly totals will be incorrect because some dates won’t be recognized as dates.
DThe sheet will delete rows with text dates automatically.
Attempts:
2 left
πŸ’‘ Hint

Think about how formulas like SUMIF or PIVOT TABLE use dates.

πŸ“Š Formula Result
intermediate
1:30remaining
Result of cleaning text with TRIM and PROPER

Given cell A1 contains the text " john DOE " (with extra spaces and mixed case), what is the result of the formula =PROPER(TRIM(A1))?

A"JOHN DOE"
B" John DOE "
C"john doe"
D"John Doe"
Attempts:
2 left
πŸ’‘ Hint

TRIM removes extra spaces, PROPER capitalizes the first letter of each word.

❓ Function Choice
advanced
2:00remaining
Choose the best function to find duplicates in a list

You want to highlight duplicate entries in a column of product IDs. Which function can you use in a new column to mark duplicates with TRUE?

A=IF(A2=A1, TRUE, FALSE)
B=COUNTIF(A:A, A2)>1
C=VLOOKUP(A2, A:A, 1, FALSE)
D=ISERROR(MATCH(A2, A:A, 0))
Attempts:
2 left
πŸ’‘ Hint

Think about counting how many times the current value appears in the whole column.

❓ data_analysis
advanced
1:30remaining
Effect of missing data on average calculation

You have a column of test scores with some empty cells. What happens if you use =AVERAGE(B2:B10) without cleaning the data?

AThe average ignores empty cells and calculates correctly.
BThe formula returns an error because of empty cells.
CEmpty cells are treated as zeros, lowering the average incorrectly.
DThe formula counts empty cells as ones, raising the average.
Attempts:
2 left
πŸ’‘ Hint

Check how AVERAGE treats empty cells by default.

🧠 Conceptual
expert
2:30remaining
Why consistent data types matter for pivot tables

When creating a pivot table from a dataset, why is it important that all values in a column have the same data type (e.g., all numbers or all text)?

ABecause mixed data types cause pivot tables to group data incorrectly or show errors.
BBecause pivot tables only work with text data, not numbers.
CBecause pivot tables automatically convert all data to dates regardless of type.
DBecause pivot tables ignore columns with mixed data types completely.
Attempts:
2 left
πŸ’‘ Hint

Think about how pivot tables group and summarize data.