Skip to main content

How to add space between characters or every digit in Excel?

Supposing you have a list of text strings or numbers, for adding space between characters or every digits, what can you do? The following methods can help you solve this problem.

Add space between characters or every digit with user-defined function
Add space between characters or every digit with Kutools for Excel


Add space between characters or every digit with user-defined function

You can use the following user-defined function to add space between characters or every digits in Excel.

1. Press Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Applications window.

2. In the Microsoft Visual Basic for Application window, click Insert > Module. Then copy and paste the following code into the Module window.

VBA code: Add space between characters or every digits
Function AddSpace(Str As String) As String
    Dim i As Long
    For i = 1 To Len(Str)
        AddSpace = AddSpace & Mid(Str, i, 1) & " "
    Next i
    AddSpace = Trim(AddSpace)
End Function

3. Press Alt + Q keys to close the Microsoft Visual Basic for Applications window and get back to the Excel window.

4. Select a blank cell, enter formula =AddSpace(B2) into the Formula Bar, then press the Enter key.

In this case, you can see spaces are added between characters of cell B2.

doc add space between characters 1

Note: For adding space between every digits, please change the cell reference in the formula to the one with numbers as you need.


Add space between characters or every digit with Kutools for Excel

If the VBA code is complicate for you, you can try the Add Text utility of Kutools for Excel. Please do as follows.

Before applying Kutools for Excel, please download and install it firstly.

1. Select the cells you need to add space between characters or every digit, then click Kutools > Text > Add Text. See screenshot:

2. In the Add Text dialog box, click on the Text box, and press the Space key once to enter a space into the text box, then select the Only add to option.

For adding space between characters:

Choose 1st letter is uppercase/lowercase option in the drop-down list, and finally click the OK button.

For adding space between every digits:

Choose 1st character is number option in the drop-down list, and finally click the OK button.

doc add space between characters 1

Then the spaces are added between characters or every digit of the specified cells.

  If you want to have a free trial (30-day) of this utility, please click to download it, and then go to apply the operation according above steps.


Add space between characters or every digit with Kutools for Excel


Related articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions…
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (5)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Can you do this example with the formula according to old versions?
This comment was minimized by the moderator on the site
Can you do this example with the formula according to old versions?
This comment was minimized by the moderator on the site
Can you do this example with the formula according to old versions?
This comment was minimized by the moderator on the site
Hi, how can I change the VBA code to have a space between every second and third character (so to group the first 2 characters, then a space)
and subsequently for any additional space I want to add, but not after every character.

Thanks in advance
This comment was minimized by the moderator on the site
AddSpace is an awesome hack. Thanks.I wanted to convert text into columns such that each character was in a different column. Insert text to column was unable to achieve it because characters need to separated. So, I used addspace function from this page and then converted text into columns and it worked. :)
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
Rate this post:
0   Characters
Suggested Locations