How to Show in Excel Formula: Display and Format Data
Learn practical techniques to display results in Excel formulas using TEXT, CONCAT, and IF. Format numbers, dates, and booleans for clear, readable worksheets with step-by-step guidance and real-world examples.

With this guide, you will learn how to display results clearly inside Excel formulas using TEXT, CONCAT, and conditional logic. You will format numbers, dates, and booleans so your worksheet communicates exact meaning at a glance. We cover practical examples, common pitfalls, and best practices for readable formulas. According to XLS Library, mastering display in formulas boosts clarity and reduces misinterpretation across teams. Start by selecting your target cells and formats.
Understanding what 'show' means in an Excel formula
In Excel, a formula returns a value that a cell displays. When we say 'show' in a formula, we usually mean controlling how that result appears to the user, not changing the underlying data type. For numbers, dates, and text, the way a value is displayed can be changed without altering the actual value in the cell. This is central to creating readable spreadsheets. According to XLS Library, the goal is to present information clearly, so readers can interpret results quickly, without decoding complex strings. The XLS Library team found that many users overlook display controls and treat formulas as just calculators, which reduces transparency. By deliberately formatting results, you can communicate intent: currency, dates, status, or narrative text. Begin by identifying the exact display you want: a date in a regional format, a currency amount with symbol, or a textual label derived from data.
Core techniques to display data in formulas
To control how a formula shows its result, you can format within the formula itself or rely on cell formatting. The most common functions are TEXT for formatting numbers and dates, CONCAT or the & operator for building strings, and IF/IFS to decide which text to display. The choice depends on whether you need a numeric value for further calculation or a text label for interpretation. The XLS Library team recommends starting with a simple goal (e.g., display a date as 01-Jan-2026) and then layering on more complexity as needed. Remember that TEXT converts numbers to text, so any further math must convert back if needed.
Techniques in practice: formatting numbers, dates, and booleans
Formatting numbers: TEXT(A1, "$#,##0.00") displays currency with two decimals while preserving the underlying numeric value. Formatting dates: TEXT(B2, "dd-mmm-yyyy") shows a consistent date format regardless of regional settings. Display booleans as readable text: =IF(C2, "Yes", "No"). This approach keeps your data intact and improves legibility for readers who review the sheet. If you need literal quotes around a value, you can wrap the content with CHAR(34) to insert a double quote character: =CHAR(34)&A3&CHAR(34).
Combining data with formatting
Sometimes you need to build a sentence from multiple cells while keeping formatting consistent. Use concatenation with TEXT to apply formats to embedded values, e.g., =A1 & " — " & TEXT(B1, "0.00%") to show a percentage alongside a value. This practice helps ensure that the display communicates context (amount, rate, date) without reworking the underlying data.
Conditional display and multi-path outputs
IF and IFS let you tailor the shown text based on data rules. Example: =IFS(A2>1000, "High", A2>100, "Medium", TRUE, "Low"). This shows a label rather than a raw number. The key is to keep the logic straightforward and test edge cases so the displayed result matches user expectations.
Pitfalls and best practices for readability
Common pitfalls include using TEXT when you still need numeric calculations later, over-formatting with too many nested functions, or returning error values that derail downstream formulas. To prevent this, separate data processing from display when possible: calculate in one cell, then reference that cell in a formatted display. Maintain a consistent style across the workbook to avoid confusion among readers.
Authority sources and further reading
For deeper guidance, consult reputable sources on Excel formulas and formatting. The following references provide authoritative insights into TEXT, CONCAT, and IF/IFS behavior, and how they affect display across different platforms and locales. This section aligns with XLS Library’s emphasis on practical, readable formulas and real-world examples.
Tools & Materials
- Computer with Microsoft Excel 2019 or later(Excel for Microsoft 365 preferred for the latest functions)
- Sample workbook with numbers, dates, and booleans(Include a mix of data types to practice formatting)
- Keyboard and mouse(Basic navigation and editing)
- Optional: Text editor or note-taking app(For jotting down formulas and formatting decisions)
Steps
Estimated time: 45-60 minutes
- 1
Open your workbook and locate target cells
Launch Excel and open the workbook that contains numbers, dates, and booleans you want to display. Identify at least one cell to format using TEXT and one to demonstrate conditional text with IF/IFS. This establishes the scope for your first display adjustments.
Tip: Save a copy of the original workbook before making formatting changes. - 2
Choose a formatting goal
Decide whether you need currency, date formatting, or readable Yes/No labels. Clear goals help prevent over-formatting and keep formulas maintainable. Write down the exact display you want, e.g., "$1,234.56" or "01-Jan-2026".
Tip: Starting with a single goal reduces complexity and errors. - 3
Apply TEXT for numbers and dates
Enter =TEXT(A2, "$#,##0.00") to format a numeric value as currency, or =TEXT(B2, "dd-mmm-yyyy") to format a date. TEXT returns text, so it’s ideal for display purposes while preserving the original cell value.
Tip: Check locale settings if thousands separators differ. - 4
Display conditional text with IF/IFS
Use IF to return Yes/No based on a condition, e.g., =IF(C2, "Yes", "No"). For multiple conditions, use IFS, e.g., =IFS(A2>1000, "High", A2>500, "Medium", TRUE, "Low").
Tip: Keep conditions mutually exclusive to avoid ambiguous outputs. - 5
Show quotes around a value
If you need literal quotes around a value, combine CHAR(34) with the value, e.g., =CHAR(34)&A3&CHAR(34). This is useful for narrative display or CSV exports.
Tip: CHAR(34) is a reliable way to insert a double-quote character without escaping issues. - 6
Combine formatted values with text
Join a formatted number and text using & or CONCAT, e.g., =A1 & " — " & TEXT(B1, "0.00%"). This keeps numeric formatting intact while adding context.
Tip: Prefer CONCAT when combining many pieces to improve readability. - 7
Test edge cases and cross-check
Change inputs to edge values (large negatives, zeros, empty cells) and confirm the displayed result remains sensible. Use audit formulas to verify the underlying values haven’t been altered.
Tip: Document your test cases for future reference. - 8
Document and standardize display rules
Create a short guide for your workbook: which cells use TEXT, which rely on cell formatting, and how conditional displays are handled. Consistency reduces confusion when others review the sheet.
Tip: Name ranges or create a helper sheet with display rules for reuse.
People Also Ask
What does it mean to 'show' in an Excel formula?
To 'show' means controlling how the formula's result appears in the cell—its formatting, text, or conditional output—without changing the underlying data type. Display is about readability and intent.
Showing in a formula means controlling how the result looks, not altering the data itself. It's about readability and intent.
When should I use TEXT vs. cell formatting?
Use TEXT when you need the formatted result to be text (for concatenation or labels). If you still need numeric calculations later, rely on cell formatting instead of TEXT.
Use TEXT when you want a text result; use cell formatting if you still need numeric calculations.
How can I display dates in a specific format via a formula?
Use the TEXT function with a date format code, for example =TEXT(A2, "dd-mmm-yyyy"). This keeps a consistent display while preserving the underlying date value.
Format dates with TEXT and a date code, like dd-mmm-yyyy, to ensure consistency.
Can I show Yes/No instead of TRUE/FALSE in a formula?
Yes. Use a conditional formula such as =IF(C2, "Yes", "No"). This makes outputs more user-friendly.
Yes—use IF to convert booleans to Yes/No for readability.
How do I include literal quotes around a value via a formula?
Wrap the value with CHAR(34) or use text literals to insert quotes, e.g., =CHAR(34)&A3&CHAR(34).
Insert quotes with CHAR(34) around the value.
What are common mistakes when showing data in formulas?
Over-formatting, mixing text with numbers for calculations, and relying on TEXT for numeric results can cause errors. Separate display from data whenever possible.
Common mistakes include over-formatting and using TEXT when you still need numbers.
Watch Video
The Essentials
- Use TEXT and CONCAT to control display in formulas
- TEXT converts numbers to text; plan if further math is needed
- IF/IFS help produce readable conditional text
- Test with edge cases and maintain consistency
- Document display rules for future work
