0
0
Excelspreadsheet~15 mins

Why clean data entry prevents errors in Excel - Business Case Study

Choose your learning style9 modes available
Scenario Mode
👤 Your Role: You are a data analyst at a retail company.
📋 Request: Your manager wants you to show how clean data entry helps prevent errors in sales reporting.
📊 Data: You have a sales data table with columns: Date, Region, Product, Quantity Sold, and Price per Unit. Some entries have inconsistent region names and missing prices.
🎯 Deliverable: Create a clean version of the data using data validation and formulas, then show total sales by region without errors.
Progress0 / 4 steps
Sample Data
DateRegionProductQuantity SoldPrice per Unit
2024-06-01EastWidget A1015
2024-06-02eastWidget B520
2024-06-03WestWidget A8
2024-06-04NorthWidget C1225
2024-06-05SouthWidget B720
2024-06-06WESTWidget C625
2024-06-07NorthWidget A915
2024-06-08SouthWidget B420
1
Step 1: Create a new column 'Clean Region' to standardize region names by converting all to proper case.
=PROPER(B2)
Expected Result
For 'east' and 'WEST', the formula returns 'East' and 'West' respectively.
2
Step 2: Create a new column 'Clean Price' to replace missing prices with the average price of that product.
=IF(E2="", AVERAGEIFS(E:E,C:C,C2), E2)
Expected Result
Missing price in row 3 (West, Widget A) is replaced with average price 15.
3
Step 3: Create a 'Total Sales' column multiplying Quantity Sold by Clean Price.
=D2*F2
Expected Result
Calculates total sales correctly even for rows with initially missing prices.
4
Step 4: Use a pivot table with Rows = Clean Region, Values = SUM of Total Sales to get total sales by region.
Insert Pivot Table: Rows = Clean Region, Values = SUM of Total Sales
Expected Result
Shows total sales per region without errors caused by inconsistent region names or missing prices.
Final Result
Region   | Total Sales
---------------------
East     | 250
West     | 270
North    | 435
South    | 220
Standardizing region names prevents splitting sales data incorrectly.
Replacing missing prices with average avoids calculation errors.
Clean data entry leads to accurate sales summaries.
Bonus Challenge

Add data validation to the 'Region' column to allow only the four valid regions: East, West, North, South.

Show Hint
Use Excel's Data Validation feature with a list of allowed regions.