Home Icon Home Resource Centre How To Add Zero Before Number In Excel? 6 Simple Techniques

How To Add Zero Before Number In Excel? 6 Simple Techniques

Want to make your data look neat? All you need are some zeroes! Find easy ways to add leading zero in Excel!
Shreeya Thakur
Schedule Icon 0 min read
How To Add Zero Before Number In Excel? 6 Simple Techniques
Schedule Icon 0 min read

Table of content: 

  • 6 Ways to Add Leading Zeroes in Excel
  • Removing Leading Zeros
  • Additional Tips and Tricks
  • Conclusion
  • Frequently Asked Questions
expand

Adding leading zeros helps to keep numbers neat. It also ensures that all numbers have the same length. This is key for many formulas in Excel.

Here’s a detailed guide to help you master adding leading zeros in Excel. These methods will make your data neat, consistent, and ready for any task, from sorting lists to running calculations. Let's dive in!

6 Ways to Add Leading Zeroes in Excel

1. Custom Number Formatting

Custom number formatting adds zeros visually without changing the actual data. Here’s how:

  • Select the cells you want to format.
  • Right-click and choose Format Cells.
  • In the Number tab, select Custom and enter the desired format. For example: 00000 for five digits (00045).
  • Click OK, and Excel will display the numbers with leading zeros.

This method keeps the underlying value the same, which is perfect for calculations.

How To Add Zero Before Number In Excel? 6 Simple Techniques

2. Using the TEXT Function

The TEXT function changes numbers to text with leading zeros:

  • In any cell, type: =TEXT(A1, "00000") (replace "A1" with the cell reference you’re working with).
  • The format "00000" specifies five digits, so Excel will add leading zeros to ensure the number has five digits.
  • Adjust the number of zeros in the format (e.g., "0000" for four digits, "000" for three) based on how many digits you need.

This function is helpful when working with data like postal codes, employee IDs, or other identifiers where leading zeros must be preserved as text.

3. Add Zeros with an Apostrophe

If you're entering numbers manually, another option is to start with an apostrophe ('), which tells Excel to treat the entry as text.

Example:

  • Type '007 to display the entry as "007" with leading zeros intact.
  • Excel treats entries with an apostrophe as text rather than numbers, so leading zeros won’t be removed.

This method is quick and ideal for manually entering data, but remember that Excel will store these entries as text, which might affect calculations.

4. The RIGHT Function

The RIGHT function is useful for creating a fixed-length number by adding leading zeros dynamically:

  • In a new cell, type =RIGHT("0000" & A1, 4) to display four digits.
  • Replace A1 with your cell reference.

For example, if A1 contains 45, it will display as 0045. This function works well for ID numbers of varying lengths.

5. Combine REPT and LEN Functions

Use REPT and LEN to add the exact number of zeros needed based on the length of each entry:

  • Type =REPT("0", 4 - LEN(A1)) & A1 to create a four-digit number.
  • Adjust the 4 for more or fewer digits, and replace A1 with your reference cell.

This is helpful for columns where the numbers vary widely in length and need specific formatting.

Note: In the abobe formula, if A1 has more than four digits, it won’t add any zeros. Adjust the 4 to set a different target length if needed.

6. CONCATENATE for Fixed Zeros

For a fixed number of leading zeros, you can use the CONCATENATE function:

  • Type =CONCATENATE("00", A1) to add two zeros in front of the number in A1.

You can also use the ampersand (&) operator as a shortcut, like this: 00 & A1 

Removing Leading Zeros

Change Cell Format to Remove Zeros

To change the cell format, first select the cells you want to change. Right-click and choose “Format Cells.” Choose “Number” and set the decimal places to zero. Click “OK.

This action removes leading zeros, allowing Excel to treat your numbers as is. If you entered something like "00123," it now comes up as 123.

Just like that, you clean up your data for better reading.

Convert Text to Number for Removal

If you converted numbers to text to keep those zeros, you can flip them back with ease.

First, select the range of cells with your text numbers. Look for a little yellow triangle in the corner of the cell. Click that one.

You’ll see an option to convert to a number. Choose that one, and poof! Your leading zeros disappear, and you’re left with pure numbers once again.

Sometimes Excel does this automatically, especially with large numbers, converting them to scientific notation.

Use Formula to Eliminate Zeros

Want a formula? Try using the TEXT function!

Type =TEXT(A1,"0") where A1 is your cell reference. This method works like a charm for keeping things tidy while eliminating those pesky leading zeros.

If you need more control, use the REPT function in tandem with TEXT. Say you want two zeros before a number; write =REPT("0", 2) & A1. It’s efficient and keeps your data structured.

Additional Tips and Tricks

Hide Leading Zeros in Excel

Highlight the cells containing zeros. Press Ctrl+1 to open the Format Cells dialog. Choose “Custom” and type # for the format code.

This simple step will hide those zeros, making your spreadsheet look cleaner without losing your original data.

Dynamic Zeros with REPT Function

Need to add dynamic leading zeros? The REPT function is your friend!

Suppose you have a number in cell A1, and you want it to show as a five-character string. You can use this formula:

=REPT("0", 5-LEN(A1)) & A1

This formula counts how many zeros you need, then adds them before your number. For example, if A1 has “23”, it’ll show “00023”.

Custom Function for Adding Zeros

Write a custom function using the TEXT formula.

If you want to ensure every number has at least five digits, use:

=TEXT(A2, "00000")

If A2 contains “7,” it becomes “00007.

You can set the number of zeros to however many you want. Just remember, the format codes are the key here.

Conclusion

Adding leading zeros in Excel brings order and clarity to your data. Whether you’re formatting IDs, phone numbers, or codes, using these simple tricks will make your spreadsheets cleaner, more professional, and easier to interpret. Give these methods a try, and elevate your Excel skills today!

Frequently Asked Questions

Q1. How do I add leading zeros in Excel?

Here’s how to include leading zeros in an Excel number. To begin, highlight the cells. Then right-click and select "Format Cells." From there, you can choose "Text" or use a custom format such as "00000.

Q2. Can I add leading zeros to numbers already in Excel?

You can pad existing numbers with leading zeros. Just change the cell format to text or apply a custom format. This won't change the number itself but will display it with leading zeros.

Q3. Will adding leading zeros affect calculations in Excel?

No, if you format a cell as text, calculations will not work on that cell. If you need calculations, retain the original number and use formulas to display it with leading zeros as needed.

Q4. How many leading zeros can I add in Excel?

Excel lets you add a maximum of 255 characters in a cell. For practical purposes, think about how many digits you need for your application.

Q5. Can I remove leading zeros easily?

Can you take the leading zeros out by switching your cell format back to General or Number? This will re-convert any text-formatted numbers back into their numerical value without any leading zeros.

Q6. Is there a formula to add leading zeros?

Yes, you can use the TEXT function. For example, =TEXT(A1,"00000") will convert the number in A1 to a five-digit number with leading zeros.

Q7. Are there any shortcuts for adding leading zeros in Excel?

You can swiftly insert leading zeros by leveraging keyboard shortcuts. After you select your range, press Ctrl + 1, select “Custom,” then type your desired format (e.g., “00000”). This saves time compared to manual formatting.

Suggested Reads: 

Edited by
Shreeya Thakur
Sr. Associate Content Writer at Unstop

I am a biotechnologist-turned-content writer and try to add an element of science in my writings wherever possible. Apart from writing, I like to cook, read and travel.

Comments

Add comment
comment No comments added Add comment