Stop Adjusting Data Manually — Try This Instead

Why does your sales report show $12,500 as text instead of a number? Why does =SUM(A2:A10) return zero even though the cells look filled? Why does changing one date break three pivot tables?

Because you’re adjusting data like it’s Word—not Excel. You’re editing cells directly, overwriting formulas, ignoring data types, and skipping validation. That’s why numbers won’t sum, dates won’t sort, and filters fail silently.

The Setup

You get a raw export from your CRM: unformatted, inconsistent, and full of hidden junk. It lands in Sheet1, starting at A1. Here’s what it actually looks like:

Sales RepRegionDeal ValueClose DateStatus
Sarah ChenAPAC$45,2002024-03-15Won
James OkaforEMEA$32,750.00Mar 22, 2024Won
Priya MehtaAPAC$61,0002024/04/01Pending
Diego RuizAmericas$28,900.0004/05/2024Lost
Amina DialloEMEA$19,4502024-03-30Won
Kenji TanakaAPAC$53,120.00Apr 12, 2024Pending
Lena PetrovaEMEA$37,8002024-04-08Won
Marcus BellAmericas$22,300.0004/15/2024Pending
Tara SinghAPAC$48,6502024-04-10Won

The Challenge

You need to adjust this data for reporting—but not just ‘fix’ it. You must:

  • Convert all Deal Value entries to true numbers (no dollar signs, no commas as text)
  • Standardize Close Date to Excel-recognized dates (not text strings)
  • Replace 'Pending' with 'In Review' across column E without affecting formulas elsewhere

The trap? Using Find & Replace on column E *before* cleaning dates or numbers. That breaks cell formatting. Or double-clicking each value in column C and retyping—introducing typos and killing formula links. Or worse: selecting B2:E10 and hitting Ctrl+1 to format—but that doesn’t convert text-to-number. It just masks the problem.

Walking Through It

Step 1: Fix Deal Value (Column C)
Don’t delete $ or commas manually. Do this:
• Select C2:C10
• Press Alt + H + F + S (Home → Format → Format Cells)
• Choose ‘Number’, 0 decimal places, uncheck ‘Use 1000 Separator’
• Click OK → nothing changes yet. That’s expected.
Now press Alt + H + N (Home → Number → Text to Columns). In the wizard, choose ‘Delimited’ → Next → uncheck everything → Next → under Column data format, select ‘General’ → Finish.
This forces Excel to reinterpret each cell as numeric. Check C2: it now shows 45200 (not $45,200), and =ISNUMBER(C2) returns TRUE.

Before (C2:C10)After (C2:C10)
$45,20045200
$32,750.0032750
$61,00061000
$28,900.0028900
$19,45019450
$53,120.0053120
$37,80037800
$22,300.0022300
$48,65048650

Step 2: Standardize Close Date (Column D)
Select D2:D10. Press Ctrl + H. In ‘Find what’, type , (comma). Leave ‘Replace with’ blank. Click ‘Replace All’. Now do the same for / and -—but only if they appear inconsistently. Then press Alt + H + N + D (Home → Number → Short Date). Excel will auto-convert most entries. For stubborn ones like “Apr 12, 2024”, use =DATEVALUE(D2) in column F, then copy-paste values back to D2. Surprising tip: If DATEVALUE fails, wrap it in IFERROR: =IFERROR(DATEVALUE(D2),--SUBSTITUTE(SUBSTITUTE(D2," ","-"),",","")) — then paste values.

Step 3: Update Status (Column E)
Select E2:E10. Press Ctrl + H. Find: Pending, Replace: In Review. Click ‘Replace All’. Done. No formulas broken. No reformatting needed.

The Result

Here’s your clean, report-ready table—fully numeric, date-recognized, and consistently labeled:

Sales RepRegionDeal ValueClose DateStatus
Sarah ChenAPAC452002024-03-15Won
James OkaforEMEA327502024-03-22Won
Priya MehtaAPAC610002024-04-01In Review
Diego RuizAmericas289002024-04-05Lost
Amina DialloEMEA194502024-03-30Won
Kenji TanakaAPAC531202024-04-12In Review
Lena PetrovaEMEA378002024-04-08Won
Marcus BellAmericas223002024-04-15In Review
Tara SinghAPAC486502024-04-10Won

What Could Go Wrong

Mistake #1: Editing inside a merged cell
You see ‘Total Q1’ merged across A1:E1 and try to change ‘Q1’ to ‘Q2’. Excel warns ‘Merged cells cannot be edited individually’. But you ignore it and hit Enter anyway. Result: Only A1 updates. B1:E1 stay blank. Your SUM() below now includes empty rows. Fix: Unmerge first (Alt + H + M + U), adjust, then remerge if absolutely necessary.

Mistake #2: Pasting over formulas with values
You copy cleaned numbers from C2:C10 and paste into the same range using Ctrl+V. Excel replaces =ROUND(B2*1.15,0) with static 45200. Later, when B2 changes, C2 won’t update. Fix: Paste Special → Values (Alt + H + V + V) only when you *intend* to break the link.

Mistake #3: Applying date formatting before conversion
You select D2:D10 and press Alt + H + N + D *before* running Text to Columns or DATEVALUE. Excel treats ‘Mar 22, 2024’ as text, then formats it as a date—but it stays text. =MONTH(D2) returns #VALUE!. Fix: Always verify with =ISTEXT(D2) first. If TRUE, convert *then* format.

Next step: Open your last messy dataset. Run these three actions in order: (1) Text to Columns on number columns, (2) DATEVALUE + Paste Values on date columns, (3) Ctrl+H on text labels. Do it now — before you open another email asking for ‘the updated numbers’.

Anna Kim

Anna Kim

Anna specializes in tax forms