Chapter 1 · Lesson 3

Data Entry Essentials

Why Excel treats numbers, text, and dates differently — and how to enter each one cleanly.
🎬
Story Scenario

Week one at NorthPeak Retail and your manager hands you a stack of paper order forms. "Get these into a spreadsheet so we can actually count them." You sit down, click a cell, and start typing. Within minutes you notice Excel doing strange things — numbers cling to the right, dates turn into formats you never asked for, and one stubborn cell keeps showing =240 as plain text. By the end of this lesson you'll know exactly why Excel behaves this way, and you'll be entering customers, products, and dates faster than the person who trained you.

How Excel classifies what you type into a cell You type in a cell What is it? Excel decides TEXT · left-aligned "Summit Tent", "C-5001" NUMBER · right-aligned 240 · 0.05 · 62400 DATE · a number too! 15-Jan-2025 = 45672

Every keystroke is sorted into one of three buckets. Alignment is your free clue: text hugs the left, numbers and dates hug the right.

The three things you can type into a cell

When you type into a cell, Excel quietly asks itself one question: "Is this text, a number, or a date?" The answer changes everything about how that cell behaves later — whether it can be summed, sorted chronologically, or used in a calculation. Getting the data type right at entry time is the single biggest favor you can do your future self.

Excel gives you a free visual clue every time: text aligns to the left, while numbers and dates align to the right. You didn't set that — Excel did, the instant you pressed Enter. So if you type the Summit Tent's price and it sits on the left, Excel thinks it's text, and your SUM later will quietly ignore it.

Here's how a few NorthPeak entries land:

ABC
1What you typeExcel reads it asAligns
2Summit TentTextLeft
3240NumberRight
415-Jan-2025Date (a number)Right
5C-5001Text (has a dash)Left
6'00510Text (kept the zero)Left

Notice row 5: the customer ID C-5001 is text because it contains a letter and a dash — that's correct, IDs aren't quantities. Row 6 shows a trick we'll cover shortly: a leading apostrophe forces Excel to keep something as text so it doesn't eat the leading zero.

Entering text the right way

Text is anything Excel can't read as a pure number or date: names, product labels, regions, IDs, notes. For NorthPeak that's columns like Salesperson, Product, Region, and CustomerID. You just click and type — but two situations trip people up.

Long text that overflows. If you type a long product description in A2 and B2 is empty, the text spills visually across B2 — but it still lives only in A2. The moment you put anything in B2, the spill is clipped. Nothing was lost; it's just hidden until the column is widened.

Numbers you want treated as text. A NorthPeak SKU like NP-101 is fine because the dash makes it obviously text. But a postal code like 00510 would lose its leading zeros and become 510. To stop that, start the entry with a single apostrophe — '00510. The apostrophe doesn't show in the cell; it just tells Excel "treat the rest as text."

💡 Pro Tip

Need to type multiple lines inside one cell — say a delivery note under a product — press Alt + Enter to start a new line within the same cell instead of jumping to the next row.

Entering numbers that actually calculate

Numbers are quantities Excel can do math with: Units, UnitPrice, Revenue, StockQty. Type the Summit Tent's price as 240 and it right-aligns — perfect, it's a real number you can multiply and sum.

The golden rule: type the raw number, format it afterwards. Don't type the currency symbol or thousands separators as you go. If you want the revenue cell to read $62,400, type 62400 and apply currency formatting later (Lesson 4). Typing $62,400 by hand risks turning the whole entry into text, and then it won't add up.

ABC
1ProductUnitsUnitPrice
2Summit Tent3240
3Trail Jacket5120
4Ridge Boots295
5Day Pack860

Because columns B and C hold genuine numbers (all right-aligned), you could instantly write =B2*C2 to get revenue, or =SUM(B2:B5) for total units. If any of those cells were secretly text, the math would break or silently skip them.

Dates: secretly just numbers

Here's the idea that makes dates click for every beginner: Excel stores a date as a plain number called a serial number. The clock starts at 1 = January 1, 1900, and counts up one per day. So January 1, 2025 is stored as 45658, and the NorthPeak order date of January 15, 2025 is stored as 45672. The pretty 15-Jan-2025 you see on screen is just formatting painted over that number.

This is genuinely useful, not just trivia. Because dates are numbers, you can subtract them. NorthPeak wants to know how many days a customer has been a member? Just subtract: =TODAY()-C2. If C2 holds the JoinDate, the answer is a count of days, because under the hood you're subtracting two serial numbers.

fx=TODAY()-C2 // days since the customer joined

Times work the same way, but as fractions of a day. One whole day is 1, so noon (half a day) is 0.5, and 6:00 AM is 0.25. A date with a time, like 15-Jan-2025 12:00 PM, is stored as 45672.5 — the whole part is the day, the decimal is the time.

AB
1What you seeStored serial number
201-Jan-19001
301-Jan-202545,658
415-Jan-202545,672
515-Jan-2025 12:00 PM45,672.5
66:00 AM (time only)0.25

To enter a date reliably, type it in an unambiguous shape like 15-Jan-2025 or use your region's format (e.g. 1/15/2025 in the US). A fast shortcut: press Ctrl + ; to stamp today's date into a cell as a fixed value.

⚠️ Common Mistakes
  • A date that won't right-align. If 15/01/2025 stays on the left, Excel didn't recognize it as a date (often a regional format mismatch) and is treating it as text. It won't sort or subtract correctly. Re-type it in a format your version accepts.
  • Typing currency symbols and commas. Entering $1,200 by hand can turn a number into text. Type 1200, format later.
  • Losing leading zeros. Account or postal codes like 00510 become 510. Force text with a leading apostrophe: '00510.
  • Trusting a number that's secretly text. A left-aligned "number" silently breaks SUM. Always glance at the alignment.

Moving the cursor: Enter, Tab, and editing with F2

Speed in data entry is mostly about your fingers never leaving the keyboard. Excel gives you predictable rules for where the cursor goes after you confirm an entry:

  • Enter confirms the cell and moves down one row.
  • Tab confirms the cell and moves right one column.
  • Shift + Enter moves up; Shift + Tab moves left — handy when you overshoot.
  • Esc cancels what you typed and leaves the cell unchanged.

There's a lovely trick built into Tab and Enter together. Type across a row with Tab, Tab, Tab, then press Enter — Excel jumps down and back to the column where you started tabbing. That lets you fill a table row by row without ever reaching for the mouse.

Editing without retyping. To fix one character in a cell, you don't have to type the whole thing again. Select the cell and press F2 to drop your cursor inside the cell, right at the end of the existing text. Make your edit, press Enter. (Double-clicking the cell does the same thing.) Without F2, typing replaces the entire cell — a classic beginner surprise.

Steps: enter your first NorthPeak row, hands on keyboard

  1. Click A2. This is where your first customer record begins.
  2. Type the name, press Tab. Enter Aisha Khan and Tab right to B2.
  3. Type the email, press Tab. Enter [email protected] and Tab to C2.
  4. Type the city, press Enter. Enter Denver then Enter — Excel drops to A3, ready for the next customer.
  5. Fix a typo with F2. Made a mistake? Click the cell, press F2, correct it, and confirm with Enter.

AutoFill: let Excel finish the pattern

That little square in the bottom-right corner of a selected cell is the fill handle, and it's a time machine for repetitive entry. Grab it and drag, and Excel continues whatever pattern it detects. For NorthPeak you'll use it constantly to build out months, regions, and sequential IDs.

Excel recognizes built-in lists automatically. Type Jan in a cell, drag the handle down, and you get Feb, Mar, Apr… Type Monday and drag for the weekdays. Type Q1 and you'll get Q2, Q3, Q4 — exactly NorthPeak's quarters.

For pure numbers, give Excel two cells so it can see the step. Type 1 in A2 and 2 in A3, select both, then drag the handle — Excel continues 3, 4, 5… If you'd typed 1 and 3, it would step by two: 5, 7, 9… One number alone usually just copies, so always seed a series with two cells.

ABC
1MonthQuarterOrderID
2JanQ1SO-1001
3FebQ2SO-1002
4MarQ3SO-1003
5AprQ4SO-1004

Every column above was created by typing the first one or two values and dragging the fill handle. SO-1001 contains a number, so Excel increments it to SO-1002, SO-1003… — instant order IDs with no typing. To copy a value instead of extending the series, hold Ctrl while you drag.

💡 Pro Tip

Don't drag down hundreds of rows by hand. If the column next to your data is already filled, double-click the fill handle and Excel auto-fills down to match the length of the neighboring column — perfect for stamping SO-1001… IDs beside a list of 480 orders in one click. After any fill, a small AutoFill Options button appears; click it to switch between "Copy Cells", "Fill Series", or "Fill Without Formatting".

Flash Fill: pattern matching by example

Flash Fill is the feature that makes people gasp. Instead of writing a formula, you simply show Excel an example of what you want, and it figures out the pattern for the whole column. It's perfect for splitting full names, building emails, or reformatting IDs in NorthPeak's customer list.

Say column A has full names and you need just the first name in column B. Type the first answer yourself, then trigger Flash Fill with Ctrl + E:

AB
1Full nameFirst name
2Priya ShahPriya
3Marcus LeeMarcus
4Dana WolfeDana
5Sam OrtegaSam

You only typed Priya in the highlighted cell B2. Pressing Ctrl + E told Excel "do that for the rest," and it filled B3:B5 by recognizing the pattern. The same trick builds NorthPeak emails — type [email protected] beside the first name, press Ctrl + E, and watch the rest appear in NorthPeak's house format:

AB
1SalespersonEmail (built by example)
2Priya Shah[email protected]
3Marcus Lee[email protected]
4Dana Wolfe[email protected]
5Aisha Khan[email protected]

Flash Fill is brilliant for one-time cleanups. Just remember it produces static text — it doesn't update if column A changes later. When you need results that stay in sync with the source, reach for text functions like TEXTSPLIT or LEFT/RIGHT instead (Section 2). For a quick "get this in shape now" job, Flash Fill wins every time.

🕰️ Legacy note (Excel 2019 & earlier)

Flash Fill arrived in Excel 2013, so anyone on an older build won't have Ctrl + E. Before that, splitting a name column meant the Text to Columns wizard (Data tab) or formulas like =LEFT(A2,FIND(" ",A2)-1). Both still work today, but for a quick split on Microsoft 365, Flash Fill is faster and needs zero syntax.

⚡ Try This (5 minutes)

Open NorthPeak_DataEntry.xlsx (this lesson's practice file) and build a tidy customer contact list on the Customers tab.

  1. In A1:E1 type the headers CustomerID, Name, Email, City, JoinDate, pressing Tab between each.
  2. In A2 type C-5001 and use the fill handle down to A6 to auto-number through C-5005.
  3. Type five names in column B (start with Priya Shah). In C2 type [email protected], then press Ctrl + E to Flash Fill the rest.
  4. In column E enter join dates like 15-Jan-2025 — confirm each one right-aligns.
  5. Bonus: in F2 type =TODAY()-E2 to see how many days each customer has been a member.

Expected outcome: IDs read C-5001…C-5005, emails match NorthPeak's format, and every date in column E hugs the right edge. If a date sits on the left, re-type it.

Lesson Summary

Every cell entry is sorted into text, number, or date — and alignment is your free clue (text left, numbers and dates right). Dates are secretly serial numbers and times are fractions of a day, which is why you can subtract them. Move fast with Enter (down), Tab (right), and F2 (edit in place). Let Excel do the typing: the fill handle extends series like Jan-Feb-Mar and SO-1001-SO-1002, and Flash Fill (Ctrl + E) splits and builds patterns from a single example. Next up: making all this data look professional with formatting.