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?
Think about how formulas like SUMIF or PIVOT TABLE use dates.
Mixed date formats cause some dates to be treated as text, so formulas that rely on date values miss those rows, leading to wrong totals.
Given cell A1 contains the text " john DOE " (with extra spaces and mixed case), what is the result of the formula =PROPER(TRIM(A1))?
TRIM removes extra spaces, PROPER capitalizes the first letter of each word.
TRIM removes leading and trailing spaces, PROPER capitalizes first letters, so the output is "John Doe".
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?
Think about counting how many times the current value appears in the whole column.
COUNTIF counts occurrences of the value; if more than 1, it is a duplicate. Other options either compare only adjacent cells or return errors.
You have a column of test scores with some empty cells. What happens if you use =AVERAGE(B2:B10) without cleaning the data?
Check how AVERAGE treats empty cells by default.
AVERAGE ignores empty cells automatically, so the result is correct without cleaning.
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)?
Think about how pivot tables group and summarize data.
Mixed data types confuse pivot tables, causing wrong grouping or errors. Consistent types ensure correct summaries.