How to Make Negative Numbers Red in Excel? (6 Easy Methods)
Working with numbers in Excel often involves identifying positive and negative values quickly. By default, Excel shows all numbers in the same color, but you can change the formatting so that negative numbers appear red. This makes your worksheets easier to read and helps you analyze financial data, budgets, and reports more effectively.
In this guide, youβll learn different methods to format negative values in red using number formatting, conditional formatting, and custom Excel functions.
Why Highlight Negative Numbers in Excel?
Highlighting negative numbers in red is common in accounting, finance, and data analysis. It allows users to:
- Spot losses or expenses faster.
- Separate profit from loss at a glance.
- Avoid confusion when working with large datasets.
- Create professional spreadsheets that follow business reporting standards.
For example, financial statements often use red to show deficits, costs, or losses, while black numbers represent positive income or profit.
Method 1: Using Built-in Number Formatting
Excel provides built-in number formatting options that allow you to display negative numbers in red without changing the actual values.
Steps to Apply Red Formatting to Negative Numbers
- Select the cells containing numbers.
- Right-click and choose Format Cells.
- Go to the Number tab.
- Select Number from the category list.
- In the βNegative numbersβ section, choose the format with red text.
- Click OK.
Now, all negative values in the selected range will automatically turn red.
Example:
| Value | Displayed in Excel (with formatting) |
|---|---|
| 500 | 500 |
| -200 | -200 (red) |
| 300 | 300 |
| -150 | -150 (red) |
This method is quick and works well for standard datasets. However, if you need more flexibility, you should use custom number formatting.
Method 2: Custom Number Formatting
Custom number formatting gives you full control over how positive, negative, and zero values appear.
Format Structure
A custom number format uses this structure:
Positive format; Negative format; Zero format; Text formatFor example:
#,##0;[Red]-#,##0;0- #,##0 β Positive numbers
- [Red]-#,##0 β Negative numbers in red
- 0 β Zero values
- (Optional fourth part for text)
Steps to Apply Custom Format
- Select your cells.
- Press Ctrl + 1 (or right-click β Format Cells).
- Go to the Custom category.
- Enter the format code:
#,##0;[Red]-#,##0;0 - Click OK.
Now, negative numbers will display in red while positive numbers remain black.
Method 3: Conditional Formatting for More Flexibility
Conditional formatting is useful when you want more than just red text. You can apply background colors, bold styles, or icons to make negative numbers more noticeable.
Steps to Apply Conditional Formatting
- Select the range of numbers.
- Go to the Home tab.
- Click Conditional Formatting β New Rule.
- Choose Format only cells that contain.
- Set the rule to: Cell Value < 0.
- Click Format and select Red Font (and optional background color).
- Click OK.
Now, every negative number in your range will automatically turn red.
Example
| Value | Conditional Formatting Result |
|---|---|
| 800 | 800 |
| -350 | -350 (red) |
| 200 | 200 |
| -90 | -90 (red) |
This method is more dynamic than built-in number formatting because you can add multiple rules (e.g., green for positive, red for negative, gray for zero).
Method 4: Using Accounting Number Format
The Accounting format is often used in finance and accounting spreadsheets. It automatically aligns currency symbols and displays negative values in red parentheses.
Steps to Apply Accounting Format
- Select your data.
- Go to the Home tab.
- In the Number group, select the drop-down and choose Accounting.
- Excel will show negative values like this:
(200)in red.
Example
| Value | Accounting Format Display |
|---|---|
| 1000 | 1,000 |
| -450 | (450) in red |
| 250 | 250 |
| -120 | (120) in red |
This style is widely used in balance sheets, income statements, and financial reports.
Method 5: Using Excel Formulas with Conditional Formatting
Sometimes, you might want advanced formatting where only specific conditions apply. For example, you may want negative numbers red only if they are less than -100.
You can use formulas in conditional formatting to achieve this.
- Select your range.
- Go to Conditional Formatting β New Rule β Use a formula.
- Enter a formula such as:
=A1<-100 - Click Format and choose red text.
- Apply and confirm.
Now, only numbers less than -100 will appear in red.
Method 6: Using VBA Macros for Automation
If you frequently need to format negative numbers across multiple worksheets, you can automate the process with a VBA macro.
Example VBA Code
Sub FormatNegativeRed()
Dim rng As Range
Set rng = Selection
rng.NumberFormat = "#,##0;[Red]-#,##0;0"
End SubSteps
- Press Alt + F11 to open the VBA editor.
- Insert a new module.
- Copy and paste the code above.
- Run the macro.
Now, any selected range will show negative numbers in red automatically.
Comparison of Methods to Show Negative Numbers as Red in Excel
Hereβs a summary of all methods:
| Method | Flexibility | Ease of Use | Professional Look |
|---|---|---|---|
| Built-in Number Formatting | Low | Very Easy | Standard |
| Custom Number Formatting | Medium | Easy | Professional |
| Conditional Formatting | High | Moderate | Flexible |
| Accounting Format | Medium | Easy | Business Standard |
| Formula-based Conditional Rule | Very High | Moderate | Customizable |
| VBA Macro Automation | Very High | Advanced | Automated |
Best Practices for Formatting Negative Numbers
- Always use consistent formatting across your workbook.
- Avoid using too many colors; keep it simple for readability.
- Use parentheses for financial statements, as they are industry standard.
- Combine conditional formatting with custom rules for advanced scenarios.
- When sharing reports, check that formatting works correctly on different versions of Excel.
Practical Use Cases
Highlighting negative values in red is useful in many real-life applications:
- Budget tracking: Show overspending instantly.
- Sales reports: Identify losses in revenue.
- Expense management: Highlight cost overruns.
- Investment tracking: Spot negative returns quickly.
- Accounting reports: Standardize financial statements.
By applying these methods, you can make your Excel spreadsheets more readable, professional, and useful for decision-making.
Final Thoughts
Knowing how to make negative numbers red in Excel is an essential skill for anyone working with data. Whether you use built-in formatting, conditional formatting, or custom rules, highlighting negative values makes spreadsheets clearer and easier to interpret.
If youβre working in finance, accounting, or data analysis, adopting these techniques ensures that important information stands out clearly. Choose the method that fits your needs: quick formatting for simple tasks or conditional rules and macros for advanced automation.
FAQs
How do I make negative numbers red using Format Cells?
Select the cells, press Ctrl+1 (or Format β Cells), go to the Number tab, choose Number or Custom, and pick a negative number format that uses red (or create one like #,##0;[Red]-#,##0). Click OK.
How can I use Conditional Formatting to color negative numbers red?
Select the range, choose Home β Conditional Formatting β New Rule, pick Format only cells that contain, set the rule to Cell Value < 0, click Format, choose a red font or fill, and apply.
Can I show negative numbers in red and with parentheses (e.g., (123) in red)?
Yes β use a custom number format such as #,##0_);[Red](#,##0) or #\,##0;[Red](#\,##0). The first part is for positives; the second part formats negatives with parentheses and red text.
How do I make an entire column show negatives in red automatically?
Click the column header to select the whole column, then apply either the Format Cells custom format or a conditional formatting rule (Cell Value < 0 β red). New values entered in that column will follow the rule.
How do I remove the red formatting from negative numbers?
Select the affected cells or range, open Ctrl+1 β Number or Custom and choose a neutral format, or remove conditional formatting via Home β Conditional Formatting β Clear Rules.
Will formatting negatives in red affect charts or exported files?
Cell formatting (font color) affects table appearance but not the numeric values used by charts β charts use the underlying numbers. When exporting (CSV) formatting is lost; when exporting to PDF or printing, colors are preserved.

Vaishvi Desai is the founder of Excelsamurai and a passionate Excel enthusiast with years of experience in data analysis and spreadsheet management. With a mission to help others harness the power of Excel, Vaishvi shares her expertise through concise, easy-to-follow tutorials on shortcuts, formulas, Pivot Tables, and VBA.
