Excel Practice Test

โ–ถ

If you have ever opened a spreadsheet and found that Excel showing formula instead of result is cluttering every cell โ€” displaying something like =SUM(A1:A10) rather than the number you expected โ€” you are not alone. This frustrating behavior trips up beginners and experienced users alike, and it almost always has a simple root cause.

If you have ever opened a spreadsheet and found that Excel showing formula instead of result is cluttering every cell โ€” displaying something like =SUM(A1:A10) rather than the number you expected โ€” you are not alone. This frustrating behavior trips up beginners and experienced users alike, and it almost always has a simple root cause.

Understanding why Excel displays raw formula text instead of calculated values is one of the most foundational troubleshooting skills you can develop as a spreadsheet user. Whether you are building a complex financial model or a simple budget tracker, cells that refuse to calculate can bring your entire workflow to a grinding halt.

The problem typically stems from one of three sources: the cell is formatted as text rather than as a number or general format, the Show Formulas mode has been accidentally activated, or the formula itself contains an error that prevents evaluation. Each of these causes has a distinct fix, and once you learn to recognize the symptoms, you can resolve them in under a minute. Many users first encounter this issue after importing data from a CSV or another source, where Excel misreads the cell type and locks it into text format before any formula is entered.

Beyond fixing the immediate display problem, this guide will walk you through a range of related Excel skills that make your spreadsheets more powerful and reliable. Topics include how to use VLOOKUP in Excel to match data across tables, how to create a drop-down list in Excel for cleaner data entry, and how to freeze a row in Excel so your headers stay visible as you scroll through large datasets. These techniques work together to build worksheets that behave predictably and professionally, reducing the chance that a formatting quirk will silently corrupt your results.

Learning to diagnose formula-display issues also sharpens your general understanding of how Excel processes cell content. Excel evaluates a cell differently depending on whether it is classified as text, number, date, currency, or general. When a cell is tagged as text, Excel treats everything inside it as a literal string, even if that string begins with an equals sign.

This is by design โ€” it allows users to display formula syntax for documentation purposes โ€” but it becomes a nuisance when it happens unintentionally. Knowing this distinction helps you make smarter decisions when building templates, importing data, or sharing workbooks with colleagues.

This article is structured as a practical reference you can return to whenever the issue resurfaces. You will find step-by-step fixes organized by cause, a breakdown of common Excel formatting pitfalls, and concrete examples drawn from real-world use cases like payroll sheets, inventory trackers, and project dashboards.

We also include guidance on how to merge cells in Excel without losing data, and how VLOOKUP in Excel interacts with text-formatted cells in ways that can produce unexpected blank results. For deeper practice, check out our guide on excel showing formula instead of result to see how these concepts apply in financial modeling scenarios.

Whether you are preparing for a certification exam, trying to pass a technical job assessment, or simply want your spreadsheets to work correctly, this guide covers everything you need. By the end, you will understand not just how to fix the formula-display problem but why it occurs, which means you will be equipped to prevent it from happening in future workbooks. The sections below move from quick fixes for the most common causes all the way through advanced troubleshooting for edge cases involving array formulas, external links, and shared workbooks in Microsoft 365.

Excel mastery is built one solved problem at a time. Fixing the formula-display issue is a small but meaningful step toward building the kind of fluency that lets you work faster, make fewer errors, and produce spreadsheets other people can actually use. Let us start with the fastest fixes and work our way toward the more nuanced scenarios that require a deeper understanding of how Excel handles cell formatting and formula evaluation under the hood.

Excel Formula Errors by the Numbers

โš ๏ธ
3
Main Causes
โฑ๏ธ
<60s
Fix Time
๐Ÿ“Š
67%
Caused by Text Format
๐ŸŒ
1.1B+
Excel Users Worldwide
๐Ÿ”„
Ctrl+`
Show Formulas Shortcut
Test Your Excel Skills โ€” Fix Formula Issues Fast

Why Excel Displays Formulas Instead of Results

๐Ÿ“‹

When a cell is pre-formatted as Text before a formula is entered, Excel treats the equals sign as a literal character. The formula is stored as a string and never evaluated. This is the most common cause, especially after importing CSV files or copying data from other applications.

๐Ÿ‘๏ธ

Pressing Ctrl+` (grave accent) toggles Show Formulas mode on and off. When active, every cell in the sheet displays its formula rather than its result. This mode is useful for auditing but is frequently activated by accident when a user reaches for the Tab key or a nearby shortcut.

โœ๏ธ

If a formula is preceded by a space or an apostrophe, Excel stores it as plain text. The apostrophe trick is intentional โ€” it forces text storage โ€” but an accidental leading space has the same effect. The cell appears to contain a formula but will never calculate.

๐Ÿ”„

A circular reference occurs when a formula refers back to its own cell, directly or through a chain of other cells. Excel may display the raw formula text rather than an error value in some configurations, particularly when iterative calculation is turned off in the workbook options.

โš™๏ธ

When a workbook is set to manual calculation (Formulas tab โ†’ Calculation Options โ†’ Manual), formulas do not recalculate automatically. Existing results stay displayed, but new formulas entered after switching to manual mode may appear as text until you press F9 to force a recalculation across the sheet.

The fastest way to fix Excel showing formula instead of result when the cause is text formatting is to select the affected cells, navigate to the Home tab, and change the cell format from Text to General or Number using the format dropdown in the Number group. After changing the format, you must re-enter the formula by pressing F2 to enter edit mode followed by Enter to confirm. Simply changing the format without re-entering does not trigger recalculation โ€” Excel only re-evaluates the cell contents when the cell is actively confirmed after a format change.

If you are dealing with a large range of text-formatted formula cells, there is a more efficient batch approach. First, select all affected cells. Then open the Text to Columns wizard under the Data tab, click Finish immediately without changing any settings, and Excel will reinterpret the selected cells according to their current format. This technique forces Excel to re-evaluate each cell without requiring you to manually re-enter formulas one by one. It works particularly well after importing data from external systems where hundreds of formula cells may need to be corrected simultaneously.

To fix the Show Formulas mode, simply press Ctrl+` again to toggle it off, or go to the Formulas tab and click the Show Formulas button in the Formula Auditing group โ€” if it appears highlighted or pressed, click it to deactivate the mode. The entire sheet will immediately switch back to displaying calculated results. If the shortcut keeps being triggered accidentally, consider remapping your keyboard layout or making a note of where the grave accent key sits relative to keys you use frequently in Excel.

When an apostrophe or leading space is the culprit, the fix requires removing the hidden character. Click on the problematic cell and examine the formula bar carefully. If you see an apostrophe at the start or a space before the equals sign, delete it and confirm the entry. For large batches, the Find and Replace dialog (Ctrl+H) can locate leading spaces, though apostrophes that force text storage are not visible in Find and Replace and must be cleared individually or through a macro that strips the prefix character programmatically.

Understanding how to merge cells in Excel properly is related to formula display issues because merged cells have specific rules about formula scope. When you merge cells using Format Cells โ†’ Alignment โ†’ Merge Cells, only the upper-left cell of the merged range retains its value or formula. If formulas in the other cells of the merge range were calculating before the merge, those results are permanently discarded. This is why experienced users often avoid merging cells in data ranges and instead use Center Across Selection as a visual alternative that preserves all cell contents and formula evaluations.

For users who encounter the formula-display problem after using VLOOKUP in Excel, there is an additional complication worth noting. VLOOKUP returns a text string when the lookup value is text-formatted and the return column contains numbers stored as text. In these cases, you may see the VLOOKUP result appear correct โ€” it shows a number โ€” but subsequent formulas that reference the VLOOKUP output refuse to calculate properly because the returned value is technically a string. Wrapping the VLOOKUP in VALUE() converts the output to a true number and restores normal formula behavior downstream in your calculation chain.

The most durable fix for formula display issues is prevention through consistent formatting habits. Before entering any formula, always verify the target cell is formatted as General or a numeric type, never Text. Build this habit into your template creation workflow by formatting your entire data entry range as General before distributing the file. When importing data, use the Import Wizard instead of direct copy-paste, and explicitly assign column data types during the import process. These proactive steps eliminate the majority of text-format formula problems before they have a chance to appear in a live workbook.

FREE Excel Basic and Advance Questions and Answers
Test foundational and advanced Excel skills with real practice questions
FREE Excel Formulas Questions and Answers
Practice Excel formula writing, debugging, and function syntax with quizzes

VLOOKUP, Drop-Down Lists, and Freeze Row Techniques

๐Ÿ“‹ VLOOKUP in Excel

VLOOKUP in Excel is one of the most powerful and widely used lookup functions available in any spreadsheet application. It searches for a value in the leftmost column of a table and returns a corresponding value from a column you specify. The syntax is =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]). Setting the fourth argument to FALSE forces an exact match, which is almost always what you want in business data scenarios. One common VLOOKUP pitfall is the formula displaying as text rather than returning a result โ€” this happens when the lookup column in your table is formatted as text while the lookup value is numeric, causing a type mismatch that returns a blank or error instead of the expected result.

To avoid VLOOKUP failures caused by text-formatted cells, always use the TRIM and CLEAN functions to normalize your lookup values before building the VLOOKUP formula. A lookup value with trailing spaces will never match a clean entry in your table, even if they appear visually identical. Advanced users often replace VLOOKUP with the INDEX-MATCH combination for greater flexibility โ€” INDEX-MATCH can look left, handles column insertions gracefully, and tends to run faster on very large datasets. Understanding these nuances is critical for anyone who uses Excel for data reconciliation, payroll processing, or inventory management workflows.

๐Ÿ“‹ Drop-Down Lists

Learning how to create a drop-down list in Excel dramatically reduces data entry errors and makes your spreadsheets more user-friendly. Navigate to the cell where you want the list, open the Data tab, click Data Validation, choose List from the Allow dropdown, and enter your list items separated by commas or reference a range of cells containing your options. Drop-down lists enforce consistent data entry โ€” instead of users typing freehand text that might use inconsistent capitalization or spelling, they select from a controlled vocabulary. This consistency is especially important when your cells feed into VLOOKUP formulas, because a misspelled entry will cause the lookup to fail silently and return a blank result rather than flagging an error.

Dynamic drop-down lists that update automatically as your source data grows are built using Excel tables or named ranges with the OFFSET function. When your source list is formatted as an Excel Table (Insert โ†’ Table), the data validation range automatically expands to include new rows added to the bottom of the table. This eliminates the maintenance burden of manually extending validation ranges every time your category list grows. Cascading drop-down lists โ€” where the second list's options depend on the selection in the first โ€” require INDIRECT combined with named ranges, and are one of the more sophisticated Excel techniques covered in advanced certification preparation materials.

๐Ÿ“‹ Freeze Rows and Merge Cells

Knowing how to freeze a row in Excel is essential for working with any dataset that extends beyond a single screen. Go to the View tab, click Freeze Panes, and select Freeze Top Row to lock the first row in place while you scroll vertically through thousands of data rows. If you need to freeze multiple rows or columns simultaneously, click the cell below and to the right of the area you want to freeze before selecting Freeze Panes โ€” Excel freezes everything above and to the left of the selected cell. Frozen panes do not affect printing; if you want headers to repeat on every printed page, use Page Layout โ†’ Print Titles instead. Forgetting this distinction is a common mistake when preparing reports for distribution.

Merging cells in Excel should be used sparingly and only for visual presentation purposes, never in data ranges that will be sorted, filtered, or referenced by formulas. The safest approach is to use Center Across Selection (Format Cells โ†’ Alignment โ†’ Horizontal โ†’ Center Across Selection) which creates the same visual appearance as a merge without actually combining the cells. This preserves individual cell addresses, allows filtering to work correctly, and prevents the VLOOKUP and INDEX-MATCH errors that merged cells frequently introduce. If you do need to merge cells โ€” for a dashboard header or a print layout โ€” do it on a separate presentation layer worksheet rather than in your data model worksheet.

Show Formulas Mode: Helpful Audit Tool or Hidden Trap?

Pros

  • Instantly reveals every formula in the sheet for fast auditing without clicking cell by cell
  • Makes it easy to spot hardcoded values hiding inside formula ranges during a model review
  • Helps identify cells that should contain formulas but were accidentally overwritten with static numbers
  • Simplifies documentation tasks by letting you screenshot formula logic for technical handoffs
  • Allows quick verification that all cells in a calculated column share the same formula pattern
  • Useful for training new users by showing formula structure alongside data context simultaneously

Cons

  • Activated accidentally by Ctrl+` keystroke, causing widespread confusion when columns suddenly show text
  • Does not distinguish between intentionally stored formula text and accidentally toggled display mode
  • Can slow down rendering noticeably on large sheets with thousands of long formula strings
  • Breaks visual alignment of columns since formula text is typically much wider than computed values
  • New users may save and share the file in formula-display mode, confusing recipients who receive it
  • Toggling back with Ctrl+` sometimes fails to register if focus is in a text field or dialog box
FREE Excel Functions Questions and Answers
Master Excel functions including VLOOKUP, IF, SUMIF, and more with practice tests
FREE Excel MCQ Questions and Answers
Multiple-choice Excel questions covering formulas, functions, and data tools

Excel Formula Display Troubleshooting Checklist

Check the cell format โ€” if it reads Text in the Home tab Number group, change it to General and re-enter the formula.
Press Ctrl+` to toggle Show Formulas mode off if all cells on the sheet are displaying formula text simultaneously.
Inspect the formula bar for a leading apostrophe or space before the equals sign and remove it.
Verify the Calculation Mode is set to Automatic under Formulas โ†’ Calculation Options, not Manual.
Use Find and Replace to locate and remove leading spaces that may be preventing formula evaluation.
Run the Text to Columns wizard on affected cells to force Excel to re-evaluate cell content after a format change.
Check for circular references using Formulas โ†’ Error Checking โ†’ Circular References and resolve any found.
Wrap VLOOKUP return values in VALUE() if downstream formulas treat results as text rather than numbers.
Avoid merging cells in data ranges โ€” use Center Across Selection as a non-destructive visual alternative.
After importing CSV data, use the Import Wizard to explicitly assign General or Number format to formula columns.
Re-enter the Formula After Changing the Format

Simply changing a cell from Text to General format does NOT automatically recalculate the formula. You must press F2 to enter edit mode and then Enter to confirm โ€” or use the Text to Columns shortcut on a selected range โ€” to force Excel to re-evaluate the formula contents. Skipping this re-entry step is why many users change the format and wonder why nothing happened.

Advanced scenarios where Excel displays formula text instead of results often involve array formulas, external data connections, or workbooks shared across different versions of Microsoft Office. Legacy array formulas entered with Ctrl+Shift+Enter display as curly-brace-wrapped text if the receiving workbook does not support dynamic arrays. In Microsoft 365 and Excel 2021, the older CSE array syntax was largely replaced by dynamic array functions like FILTER, UNIQUE, and SORT. If a workbook containing legacy array formulas is opened in a version of Excel that interprets these differently, cells may display the formula string rather than spill results across the expected range.

External reference formulas โ€” those that pull data from another workbook using a path like =[Workbook.xlsx]Sheet1!A1 โ€” can also appear as raw text when the source workbook is closed and the connection path contains special characters or spaces that Excel cannot parse without the file being open.

The fix is to enclose the file path in single quotes within the formula, ensure the source file is located in a path without unusual Unicode characters, or convert the external reference to a value by copying and pasting as values-only once the source data is stable and no longer needs to update dynamically.

Shared workbooks in older Excel versions (pre-Microsoft 365 co-authoring) have a known issue where formula cells can revert to text display after a conflict resolution event. When two users edit the same cell simultaneously, Excel resolves the conflict by keeping one version and discarding the other.

In rare cases, the conflict resolution process stores the formula as a text string rather than a live formula, particularly if one user had the cell formatted as text locally. The solution is to audit shared workbooks after heavy simultaneous editing sessions and use the Text to Columns batch fix to restore any affected formula cells.

Power Query is an area where formula display confusion often arises for users who are new to the tool. Power Query M-language formulas displayed in the Advanced Editor are not Excel formulas and will never be evaluated in a worksheet cell. Users who copy M-language syntax into an Excel cell expecting it to produce a result will see the text displayed as-is.

The distinction matters because Power Query transformations must be executed through the Power Query interface and loaded to the worksheet as a table or connection โ€” they cannot be embedded directly in cell formulas. Recognizing the boundary between the two formula systems prevents a class of errors that no amount of cell reformatting will fix.

Named ranges that contain formula syntax are another edge case worth understanding. When you define a named range using Formulas โ†’ Name Manager and assign a formula as the Refers To value, that formula runs as a workbook-level named formula rather than in a specific cell. If you type the named range directly into a cell โ€” the way you would type =MySalesTotal โ€” Excel evaluates it normally.

But if the name itself contains a syntax error, Excel may display #NAME? or show the name as text depending on the error type. Auditing named ranges for stale references and typos is a useful step when debugging a workbook where certain cells consistently refuse to calculate.

Conditional formatting rules that target formula cells deserve a brief mention here as well. Conditional formatting does not cause formula-display problems, but it can mask them visually. A cell displaying formula text might have a conditional formatting rule that colors it green, making it appear as though the cell is healthy when it is actually broken. During workbook audits, always check cell contents in the formula bar independently of any visual formatting cues. The formula bar shows the true stored content of a cell regardless of what any formatting rule is doing to its visual presentation on the grid.

For users preparing for Microsoft Office Specialist (MOS) certification exams, understanding why Excel shows formula text instead of results is explicitly tested. Exam scenarios may ask you to correct a range of text-formatted cells, identify the keyboard shortcut that toggles formula display, or explain the difference between a cell formatted as Text versus General.

Practicing these fixes in a real Excel environment โ€” not just reading about them โ€” is the most reliable way to build the muscle memory needed to perform them quickly under exam conditions. The quiz resources linked throughout this article provide structured practice that reinforces these diagnostic skills effectively.

Building error-proof spreadsheets requires understanding not just how to fix the formula-display problem after it occurs but how to architect your workbooks so the conditions that cause it are systematically eliminated. The first architectural principle is to separate your data layer from your presentation layer.

Keep raw data in dedicated worksheets formatted entirely as General, apply number formatting only in a separate calculation or reporting sheet, and never allow user input directly into cells that contain formulas. This separation ensures that no human data entry action can accidentally overwrite a formula cell or introduce a text-format contamination into your calculation range.

Template governance is the second principle. When you build a workbook that other people will use, lock the structure before distribution. Use Protect Sheet (Review โ†’ Protect Sheet) to restrict editing to specific unlocked input cells, preventing users from accidentally changing cell formats or entering text in formula cells. Combine this with data validation rules that restrict input to numbers or dates in cells where formulas depend on numeric inputs. These protections do not prevent all formula-display issues, but they dramatically reduce the surface area where user actions can trigger the problem.

The third principle is consistent import hygiene. Most formula-display issues in professional environments originate from data imports rather than from manual user actions. Establish a standard process for all data imports: always use Data โ†’ Get Data โ†’ From Text/CSV for CSV files rather than double-clicking the file to open it directly.

The import wizard gives you explicit control over column data types, which prevents Excel from guessing incorrectly and assigning Text format to columns you intend to use in formulas. Document this import procedure in a team wiki or process guide so that every team member follows the same steps regardless of their Excel experience level.

Version control for Excel files is a practical safeguard that many teams overlook. Storing workbooks in SharePoint or OneDrive with version history enabled means you can roll back to a known-good state if a formula-display problem is introduced during a collaborative editing session. Microsoft 365's co-authoring feature has largely eliminated the conflict resolution issues that plagued older shared workbooks, but version history remains valuable as a safety net for any type of accidental edit. Train your team to check version history before attempting complex manual fixes on a workbook that may have been corrupted by a software or synchronization issue.

Audit tools built into Excel itself are underused resources for diagnosing formula problems. The Formula Auditing toolbar (Formulas โ†’ Formula Auditing) includes Trace Precedents, Trace Dependents, and Error Checking โ€” features that help you visualize why a specific cell is or is not calculating. The Watch Window lets you monitor specific cells across multiple sheets without navigating away from your current view.

These tools are especially useful in large models where a formula in one section depends on inputs from another sheet, and a text-format error in an intermediate cell is silently propagating an incorrect value through dozens of downstream calculations without triggering any visible error indicator.

Understanding how Excel's calculation engine works at a conceptual level gives you a diagnostic advantage that purely procedural knowledge does not. Excel recalculates formulas in a specific dependency order called the calculation chain, built when the workbook is first opened.

If a cell in the middle of the chain is text-formatted and therefore not evaluated, all cells that depend on it receive either an error value or a blank, depending on how the dependent formulas handle empty inputs. This chain-of-failures pattern explains why fixing one text-format cell sometimes resolves errors in dozens of cells downstream โ€” you fixed the root node that was breaking the entire dependency tree.

Mastering these concepts positions you well for both professional spreadsheet work and formal certification. The skills covered in this section โ€” formula auditing, import hygiene, workbook protection, and calculation chain awareness โ€” appear consistently in MOS Excel Associate and MOS Excel Expert exam objectives. For a comprehensive test of your ability to apply these techniques, the practice quizzes listed throughout this article provide exam-style questions that mirror the format and difficulty of real certification assessments. Regular timed practice is the most efficient path from conceptual understanding to the confident, reliable performance that both employers and certification bodies are looking for.

Practice Excel Formula Questions and Boost Your Score

Practical daily habits are what separate Excel users who constantly battle formula-display problems from those who rarely encounter them. The single most impactful habit is to always press Ctrl+Home before saving any workbook you plan to share. This keystroke returns your cursor to cell A1 and simultaneously gives you a quick visual scan of the top-left corner of the sheet โ€” if Show Formulas mode is accidentally active, you will see formula text in the cells you just passed while navigating, giving you an immediate cue to turn the mode off before the file leaves your hands.

The second habit is to use the Name Box โ€” the field at the top left of the Excel window that displays the current cell address โ€” to monitor cell format while entering formulas. After typing a formula and pressing Enter, navigate back to the cell and glance at the Number format shown in the Home tab ribbon.

If it reads Text, you know the formula was entered into a text-formatted cell and must be corrected immediately. Catching this immediately after entry is far easier than diagnosing it later when the downstream effects have rippled through the rest of the workbook calculation chain.

Building a personal formula testing sheet is a habit that pays dividends over time. Keep a scratch worksheet in your workbooks named Test or Sandbox where you verify new formulas before using them in your live data. Enter the formula in the test sheet first, confirm it calculates correctly, check that the cell is not showing formula text, and only then transfer the formula to the production range. This workflow catches syntax errors, text-format issues, and range reference mistakes in a low-stakes environment before they have any chance to corrupt real data or mislead the stakeholders reading your reports.

Learning keyboard shortcuts for the most common Excel actions reduces accidental toggles and speeds up your diagnostic workflow significantly. The key shortcuts relevant to formula display are: Ctrl+` to toggle Show Formulas mode, F2 to enter edit mode in the current cell, F9 to recalculate all sheets (useful when in manual calculation mode), and Ctrl+Shift+Enter for legacy array formula entry. Knowing these shortcuts means you can execute a diagnosis and fix sequence in under fifteen seconds โ€” select the cell, check format, change to General, press F2, press Enter, done โ€” rather than navigating through multiple ribbon menus.

For teams that work extensively with Excel, establishing a peer review step before any workbook is published or distributed catches formula-display errors and other quality issues that the original author may have overlooked.

A second set of eyes examining the workbook โ€” specifically checking cell formats in formula ranges, verifying that no cells show formula text, and confirming that all imported data columns are numeric rather than text-formatted โ€” adds a meaningful quality gate that prevents embarrassing errors from reaching leadership, clients, or auditors. This review step is especially important for financial models where a formula-display error might be interpreted as a missing calculation rather than a formatting issue.

Continuous learning is the final practical tip. Excel is a deep tool and Microsoft adds new functions and features in nearly every Microsoft 365 update. Functions introduced in the last few years โ€” XLOOKUP, FILTER, LET, LAMBDA, and the BYROW and BYCOL helpers โ€” change how many professionals structure their formulas and can interact with text-format cells in ways that differ from classic VLOOKUP behavior.

Staying current through official Microsoft documentation, community forums, and structured practice tests ensures your troubleshooting knowledge evolves alongside the tool. The practice quizzes available on PracticeTestGeeks cover both classic and modern Excel functions, giving you a comprehensive assessment of where your knowledge is strong and where additional study will yield the biggest improvement in your overall Excel proficiency.

Remember that every formula-display problem you solve builds a clearer mental model of how Excel processes cell content. Over time, these individual fixes accumulate into deep intuition that allows you to recognize the cause of a problem from a quick glance rather than a lengthy diagnosis. That intuition is what distinguishes a casual Excel user from a true power user โ€” and it is fully accessible to anyone willing to practice consistently, test their knowledge regularly, and approach each spreadsheet challenge as an opportunity to deepen their understanding of one of the world's most widely used productivity tools.

FREE Excel Questions and Answers
Comprehensive Excel certification practice covering all key exam topic areas
FREE Excel Trivia Questions and Answers
Fun Excel trivia questions to reinforce your spreadsheet knowledge and skills

Excel Questions and Answers

Why is Excel showing my formula instead of the result?

The three most common causes are: the cell is formatted as Text rather than General or Number; Show Formulas mode has been toggled on with Ctrl+`; or the formula has a leading apostrophe or space that forces text storage. Fix text formatting by changing the cell format to General and pressing F2 then Enter to re-enter the formula. Toggle Show Formulas off by pressing Ctrl+` again or clicking Show Formulas on the Formulas tab.

How do I use VLOOKUP in Excel without it returning text instead of a number?

If VLOOKUP returns a value that looks like a number but behaves as text in downstream formulas, the return column in your table is formatted as Text. Fix this by selecting the return column, changing its format to General, and using Text to Columns (Data tab) to force re-evaluation. You can also wrap the VLOOKUP in VALUE() to convert the output: =VALUE(VLOOKUP(...)). Ensure your lookup values and table data use consistent data types to avoid type-mismatch failures.

How do I create a drop-down list in Excel?

Select the cell where you want the list, go to the Data tab, click Data Validation, set Allow to List, and either type comma-separated options in the Source field or reference a cell range like =$A$1:$A$10. Click OK and the cell will display a dropdown arrow. For a dynamic list that grows automatically, format your source list as an Excel Table first โ€” the validation range will expand to include new rows added to the table without any manual adjustment required.

How do I freeze a row in Excel so headers stay visible?

Go to the View tab, click Freeze Panes, and choose Freeze Top Row to lock row 1 in place while scrolling. To freeze multiple rows, click the first cell of the row immediately below the rows you want to freeze, then select Freeze Panes โ†’ Freeze Panes. To unfreeze, return to View โ†’ Freeze Panes โ†’ Unfreeze Panes. Note that frozen panes are a display feature only โ€” they do not affect how the sheet prints. Use Page Layout โ†’ Print Titles to repeat header rows on printed pages.

How do I merge cells in Excel without losing data?

Standard Merge Cells (Home โ†’ Merge and Center) keeps only the upper-left cell's content and discards everything else. To avoid data loss, first concatenate the values you want to keep into the upper-left cell using a formula like =A1&" "&B1, then merge. A safer alternative is Center Across Selection (Format Cells โ†’ Alignment โ†’ Horizontal โ†’ Center Across Selection), which creates the same centered visual appearance without actually combining the cells, preserving all individual cell values.

What does Ctrl+` do in Excel and how do I turn it off?

Ctrl+` (Ctrl plus the grave accent key, located above Tab on most US keyboards) toggles Show Formulas mode. When active, every cell on the current sheet displays its formula text instead of its calculated result. To turn it off, press Ctrl+` again. Alternatively, go to the Formulas tab and click Show Formulas in the Formula Auditing group โ€” if it appears highlighted, click it to deactivate. Always disable this mode before saving files you intend to share.

Why does my VLOOKUP show a blank result even though the value exists in the table?

Blank VLOOKUP results usually indicate a data type mismatch โ€” your lookup value is numeric but the table column is text-formatted (or vice versa) โ€” or there are invisible trailing spaces in one of the values. Fix type mismatches by reformatting the table column and using VALUE() or TEXT() to align types. Fix trailing spaces by wrapping both the lookup value and the table column references in TRIM(). Also verify the fourth VLOOKUP argument is FALSE for exact matching rather than TRUE for approximate matching.

How do I fix Excel showing formulas in an entire column after importing a CSV?

Select the entire column, change the cell format from Text to General on the Home tab, then select the column again and run Data โ†’ Text to Columns โ†’ Finish without changing any settings. This forces Excel to re-evaluate all cells in the column using the new General format. If formulas are still not calculating after this step, check whether the workbook is in Manual Calculation mode (Formulas โ†’ Calculation Options โ†’ Automatic) and press F9 to trigger an immediate full recalculation.

What is the difference between TEXT format and GENERAL format in Excel?

General format is Excel's default โ€” it automatically detects whether cell content is a number, date, formula, or text and applies appropriate display formatting. Text format forces Excel to treat all cell contents as literal strings regardless of what they contain, meaning formulas are stored and displayed as text rather than evaluated. Always use General or a specific numeric type for cells that contain formulas or will be referenced by formulas. Reserve Text format only for cells storing values like ZIP codes or account numbers where leading zeros must be preserved.

How can I tell if my Excel formula is actually calculating or just stored as text?

Click the cell and look at three things: the formula bar (does it show a formula?), the Number format box on the Home tab (does it say Text?), and the cell alignment (text defaults to left-aligned, numbers to right-aligned). A formula stored as text will be left-aligned and show Text in the format box. A formula that is evaluating correctly will be right-aligned if it returns a number and will show its calculated result in both the cell and the formula bar preview area above the grid.
โ–ถ Start Quiz