Excel Practice Test

โ–ถ

Three kinds of lists matter in Excel, and you'll likely need all of them this week. A numbered list keeps step-by-step instructions in order. A bulleted list adds visual hits to a memo or quick checklist sitting in one cell. A dropdown list, the most powerful of the bunch, restricts what someone can type into a cell โ€” and that single trick prevents about half the dirty data problems most spreadsheets ever see.

Excel has no big shiny "Insert List" button, which trips people up. Word does. Excel doesn't. Numbering and bullets live behind formulas, format codes, and a tiny keyboard combo most users never learn. Dropdowns hide under Data > Data Validation. Custom sort lists โ€” the secret weapon for repeating things like "Q1, Q2, Q3, Q4" or "North, South, East, West" โ€” sit five clicks deep inside File > Options > Advanced.

This guide walks each of those paths. We'll start with numbered lists (three methods, including the formula version that survives row deletions), move to bulleted text inside a cell, build a proper data validation dropdown, then teach Excel a custom list so it auto-fills your team names or fiscal quarters. By the end, you'll know which type to use when, and the keyboard shortcut that gets you there fastest.

List Types at a Glance

3
Methods to number a list
Alt+0149
Bullet character shortcut
1 click
Dropdown arrow access
Per-machine
Custom lists scope

Numbered lists in Excel: three approaches

Most people just type "1" in A1, "2" in A2, then drag the fill handle. That works โ€” until you insert a row in the middle or delete row 5. Then your numbering breaks, and you're renumbering by hand at 4pm on a Thursday. There's a better way, actually three of them.

Method 1: AutoFill drag. Type 1 in A2, 2 in A3, select both cells, then drag the small green square at the bottom-right corner down the column. Fine for quick, throwaway lists. Bad for anything you'll edit.

Method 2: Fill Series. Type 1 in A2, then Home > Editing > Fill > Series. Choose Columns, Linear, Step 1, Stop 100 (or whatever). Excel writes the numbers for you. Same problem as Method 1 โ€” static values.

Method 3: ROW formula. Type =ROW()-1 in A2 and drag down. This is the move. Because it's a formula referencing the row position, inserting or deleting rows renumbers everything automatically. If your header row sits in row 1, the -1 offset makes A2 show "1" and A3 show "2", clean as anything. Want a buffer? Use =ROW()-ROW($A$1) instead โ€” it's anchored to the header, so moving the table around won't break it.

Static numbers (1, 2, 3 typed in) break the moment you delete or insert a row. The =ROW()-1 formula renumbers automatically because each cell calculates its number from its row position. For tables that grow and shrink, this is the only numbering method that survives.

How to add a list in Excel as plain text bullets

Excel doesn't have a bullet button on the ribbon. You can stare at the Home tab all day; it isn't there. To put a bullet in front of text inside a cell, you need the Alt code: hold Alt and type 0149 on the numeric keypad (the number pad on the right side of a full keyboard โ€” not the row above the letters). Release Alt, and the bullet character โ€ข appears. Type your text, hit Alt+Enter to start a new line inside the same cell, then repeat.

No numeric keypad? Laptop users have two workarounds. First, copy a bullet from somewhere else (this page, a Word doc) and paste it. Second, use Insert > Symbol and pick the bullet from the Symbol dialog. Tedious, but it works.

For an entire column of bulleted entries โ€” one bullet per cell โ€” apply a custom number format. Select your range, press Ctrl+1 to open Format Cells, go to the Number tab, pick Custom, then type โ€ข @ in the Type box (that's bullet, space, at-sign). Click OK. Now anything you type in those cells gets a bullet prepended automatically, no Alt code needed. The text stays editable and searchable because the bullet is a format, not actual content.

Wingdings has another trick. Set a column's font to Wingdings, type a lowercase "l" (small L), and you get a filled bullet. Type "n" for a square bullet. Adjacent column stays in normal font with your text. It's a clunky old method but still works in every Excel version.

Four Ways to Insert a Bullet in Excel

๐Ÿ”ด Alt code

Hold Alt, type 0149 on the numeric keypad, release. Inserts โ€ข at the cursor.

๐ŸŸ  Custom format

Select range, Ctrl+1, Number > Custom, type โ€ข @ โ€” bullets appear automatically on entry.

๐ŸŸก Copy & paste

Grab a bullet from any document or web page, paste it once, reuse with Ctrl+V.

๐ŸŸข Wingdings font

Set the font to Wingdings, type lowercase l for a filled bullet or n for a square.

How to create a dropdown list in Excel (data validation)

This is the version most people actually mean when they ask how to create excel list. A dropdown limits a cell to a fixed set of values, shown as a clickable arrow. Approvers, statuses, departments, product codes โ€” anything with a known set of options belongs in a dropdown.

The basic flow: select the cell or range that should have the dropdown, go to Data > Data Validation, pick List from the Allow box, and type your options into the Source field separated by commas โ€” Open, In Progress, Closed, On Hold. Click OK. Each selected cell now has the little arrow.

The better way uses a reference instead of typed-in values. Put your options on a separate sheet โ€” call it "Lists" โ€” in a column. Select that column, give it a Name Box reference like StatusList, then in Data Validation Source type =StatusList. When the team adds a new status next quarter, you update one cell on the Lists sheet and every dropdown picks it up.

For an even tidier version, convert the source range to an Excel Table (Ctrl+T). Tables auto-expand. Reference it with =INDIRECT("Table1[Status]") in the data validation source. Now your dropdown grows as the table grows, no manual range editing.

Dropdown List Source Options

๐Ÿ“‹ Typed values

Open Data Validation, pick List from Allow, type values separated by commas in the Source box (Open, Closed, Pending). Fast but rigid โ€” every edit means reopening Data Validation on each cell.

๐Ÿ“‹ Named range

Put your options on a Lists sheet, select the range, name it (e.g. StatusList) in the Name Box. In Data Validation Source type =StatusList. Update one place; every dropdown follows.

๐Ÿ“‹ Excel Table

Convert the source range to a Table with Ctrl+T. Reference with =INDIRECT("Table1[Status]"). The dropdown auto-grows as the table grows โ€” no range maintenance, ever.

๐Ÿ“‹ Dependent

Two linked dropdowns: column B picks a category, column C narrows by that pick. Use =INDIRECT(B2) in C's source, with each category name matching a named range of sub-options.

Custom Sort Lists: teach Excel your sequences

Here's the feature most users never find. Excel ships knowing that "Mon, Tue, Wed" and "January, February, March" are sequences โ€” drag the fill handle and it autocompletes. But what about your fiscal quarters, your regional offices, your sales tiers? You can teach Excel any of those, and it'll AutoFill and sort by them forever after.

Go to File > Options > Advanced. Scroll way down to the "General" section near the bottom and click Edit Custom Lists. A dialog pops up showing the built-in lists. Click "NEW LIST" in the left pane, type your entries in the right pane (one per line, or comma-separated), and click Add.

Now type any one entry in a cell and drag the fill handle โ€” Excel completes the sequence. Sort by that column and Excel respects the custom order instead of going alphabetical. So "Platinum, Gold, Silver, Bronze" sorts as a tier ladder, not as "Bronze, Gold, Platinum, Silver."

You can also import a custom list from a range. Type your sequence in a column first, then in the Edit Custom Lists dialog click the small range-picker icon next to "Import list from cells", select your range, hit Import. Faster than typing for long lists.

Take the Excel Practice Test

When to use which list type

Mismatched list types create the worst spreadsheets. Someone uses a numbered list for status values (1=Open, 2=Closed) and then nobody remembers what 3 was. Or a bulleted text list goes where a dropdown should be, and a teammate types "Aproved" instead of "Approved" โ€” your COUNTIF breaks silently.

Use a numbered list when order matters and the position is meaningful: process steps, ranked candidates, priority tiers. Use the ROW formula so the numbers fix themselves.

Use a bulleted text list when you're stuffing a memo or summary into a single cell โ€” onboarding notes, change-log entries, anything that's narrative content. Don't use it for data you'll later filter or pivot. The bullet character throws off lookups.

Use a dropdown (data validation) list when a cell should only hold one of a known set of values. This is your default for status columns, category columns, owner columns, anywhere consistency matters. Pair it with conditional formatting and the spreadsheet starts looking like a small app.

Use a custom sort list when you have a non-alphabetic sequence you'll reuse across files โ€” fiscal periods, team rankings, severity levels. Set it once in Excel Options and it's available in every workbook on your machine.

Build-a-List Pre-Flight

Used =ROW()-1 instead of hand-typed numbers
Source range for dropdown lives on its own sheet, not inside the validation box
Source range is a named range or an Excel Table
Input Message set so users know what to pick
Error Alert configured โ€” Stop, Warning, or Information
Custom number format โ€ข @ applied for cell-level bullets
Source sheet hidden or protected
Validation tested by pasting a junk value

Common mistakes and how to dodge them

The number-one trap is hardcoded numbered lists that break on row insert. Don't hand-type sequences. Use =ROW()-1, every time. Same goes for date sequences โ€” use Fill Series with a step value rather than typing each date by hand, and any future edit propagates cleanly.

Number two: putting your dropdown source values directly in the Data Validation Source box. Looks fast, becomes a nightmare. Six months later someone needs to update the list and has to hunt through every cell with validation. Always reference a named range or a table column.

Mistake three is forgetting Ignore blank in Data Validation. Uncheck it if you want to force entry โ€” useful for required fields. Leave it checked if blanks should be allowed.

Mistake four: typing bullet characters by hand into thousands of cells. Use the โ€ข @ custom number format instead. Cleaner, editable, removable in one click.

Last one: people forget that custom lists are stored per-machine, not per-workbook. Move the file to a colleague's laptop and your "Region: NA, EMEA, APAC, LATAM" custom sort order vanishes. If you need the list to travel, include a hidden sheet with the sequence in row order and sort by that helper column instead.

Typed Source vs Named Range Dropdown

Pros

  • Named range updates propagate to every dropdown automatically
  • Source values are visible and editable in one place
  • Excel Tables make the range self-expanding
  • Easier to document for teammates who maintain the sheet later

Cons

  • Typed source is faster to set up for one-off, throwaway sheets
  • Named ranges add a tiny learning curve for new users
  • INDIRECT references don't survive Excel for the web in every scenario
  • Hidden source sheets need protection or someone will delete them

Bonus: combine lists with formulas

The real power shows up when you wire lists together. A dropdown in column B (status), an IF formula in column C that lights up based on selection, a COUNTIF at the bottom totaling each category โ€” that's a 15-minute build that replaces a Trello board for small teams. Add conditional formatting on the status column so "Closed" turns green and "Blocked" goes red, and you've got a visual tracker that updates the second anyone changes a dropdown value.

Dependent dropdowns are the next step up. Column B picks "Department" from a list. Column C's dropdown then shows only people in that department. INDIRECT and named ranges make this work โ€” name each department's people list with the exact department name, then in C's Data Validation source put =INDIRECT(B2). Pick "Sales" in B and C's dropdown updates to show just the sales team. The trick is exact name matching: if your category dropdown shows "Sales Team" but your named range is just "Sales", INDIRECT returns an error.

For numbered lists tied to filters, the SUBTOTAL function is your friend. Type =SUBTOTAL(3,$B$2:B2) in A2 and drag. Now when you filter the table, only visible rows are numbered 1, 2, 3 โ€” hidden rows are skipped. Reports printed from a filtered view look professionally numbered, even though you've sliced the data down to just the rows that matter.

Try the Data Validation Quiz

Quick checks before you publish your sheet

Whatever list you built, run through this short pre-flight. Spreadsheets shared without these checks break within a week.

Did you protect the source range? If your dropdown options sit in a "Lists" sheet, hide that sheet or password-protect it so nobody accidentally overwrites the options. Right-click the tab, choose Hide.

Did you set an input message? In Data Validation, the Input Message tab lets you add a hint that pops up when the cell is selected โ€” "Pick a status from the dropdown" tells future users what's expected.

Did you set an error alert? The Error Alert tab controls what happens when someone types a value not in your list. Stop (block entry) is the strictest. Warning lets them override. Information just notifies. Pick the right one for the job.

Did you test on real data? Paste-special into a validated cell sometimes bypasses validation. Try pasting a junk value and confirm the error fires. Patch holes before the sheet goes to a stakeholder.

Pulling it all together

Three list types, four if you count custom sort lists, each with a job. The fastest way to internalize them is to build a small tracking sheet right now: a header row, a ROW-formula column on the left for line numbers, a dropdown column for status, a free-text notes column with bulleted entries via Alt+0149, and a custom sort list for your status priorities. Twenty minutes start to finish.

If you regularly build sheets for non-technical teammates, lean hard on dropdowns. Every dropdown is a data-quality safeguard. Every typed value is a future bug. The five minutes you spend setting up Data Validation today saves an hour of cleanup next month.

One small habit that pays off: keep a "Lists" tab in every workbook you build. Even if you only need one dropdown today, future-you will thank present-you when the second dropdown shows up next month and the source pattern is already set. Name your ranges with consistent prefixes โ€” list_Status, list_Owner, list_Priority โ€” and they all sort together in the Name Manager.

Another habit: document the lists. Above each source column on the Lists sheet, drop a short note in row 1 explaining what the values mean and who owns them. Six months from now, when someone asks why "On Hold" exists alongside "Paused", that note is the answer. Spreadsheets without that context become folklore โ€” and folklore is where small errors compound into bad decisions.

Practice these list techniques alongside the other Excel skills covered on this site โ€” the more you use them in combination, the more naturally they come. Test your understanding with the practice quizzes below.

Excel Questions and Answers

How to create a list in Excel quickly?

For a numbered list, type =ROW()-1 in the first cell below your header and drag down. For a bulleted text list, press Ctrl+1, pick Custom in the Number tab, and type โ€ข @ as the format. For a dropdown, select the cell, go to Data > Data Validation, pick List, and reference a named range. Each takes under a minute once you know the shortcut.

How to add a list in Excel without bullets in the ribbon?

Excel doesn't put bullets on the ribbon โ€” that's a Word feature. To add bullet characters to text in a cell, hold Alt and type 0149 on the numeric keypad, then your text. Press Alt+Enter inside the cell to start a new bulleted line. For laptops without a numeric keypad, copy a bullet from another document or use Insert > Symbol.

How to create the list in Excel that auto-renumbers when I delete rows?

Use a formula instead of typed numbers. Put =ROW()-1 in cell A2 (assuming row 1 is your header) and drag the formula down the column. Delete row 5 and rows 6 through the bottom shift up, with their formulas recalculating to the new row positions. No manual renumbering needed.

How to create excel list that limits what users can type?

That's a data validation dropdown. Select the cells, go to Data > Data Validation, choose List under Allow, and put your allowed values in the Source field โ€” either typed in (Yes, No, Maybe) or as a reference to a named range (=StatusList). Cells now show an arrow, and any value outside your list triggers an error.

How do I add a custom list for AutoFill and sorting?

Go to File > Options > Advanced, scroll to the General section, click Edit Custom Lists. Click NEW LIST, type entries one per line in the right pane, then Add. Excel will now AutoFill from any entry and respect that order in Sort dialogs. Useful for fiscal quarters, custom tiers, region names โ€” anything non-alphabetic you reuse.

What's the difference between a numbered list and a bulleted list?

A numbered list uses sequential digits (1, 2, 3) and implies order or count. Use it for steps, rankings, or anything position-dependent. A bulleted list uses bullet characters (โ€ข) and treats items as equivalent โ€” no order implied. Use it for unranked points, summaries, or feature lists. In Excel, numbered lists are usually a separate column; bulleted lists are usually text inside one cell.

Can I create a dependent dropdown list in Excel?

Yes. Name a range for each parent category โ€” for example, name your sales-team range "Sales" and your support-team range "Support". In the parent dropdown (column B), put a list of category names. In the dependent dropdown (column C), set the Data Validation Source to =INDIRECT(B2). When B2 shows "Sales", C2's dropdown shows the Sales team. Switch B2 to "Support" and C2's options update.

Why won't my custom sort list work on a coworker's computer?

Custom lists save to your local Excel installation, not the workbook. They don't travel with the file. To get a custom sort order to follow the file, add a hidden helper column with manual sort positions (1, 2, 3...) matching your custom order, then sort by that helper column instead of the visible text column.

โ–ถ Start Quiz