Skip to main content
 

How to split word or number into separate cells in Excel?

Author: Xiaoyang Last Modified: 2024-09-04

If you have a list of numbers or words in a worksheet, and now you need to split the cell contents into letters on different cells as following screenshot shown, how can you deal with this job in Excel?

doc split word to letters 1

Split word or number into separate cells with formula

Split word or number into separate cells with Kutools for Excel

Split word or number into separate cells with VBA code

Combine separated letters or numbers into one word or number


arrow blue right bubble Split word or number into separate cells with formula

With the following simple formula, you can separate the cell contents on different cells quickly and conveniently.

1. In a blank cell next to your data, C1 for instance, please enter this formula =MID($A1, COLUMNS($A$1:A$1), 1), see screenshot:

apply a formula to split word into separate cells

2. Then drag the fill handle over to the right cells until displaying blank cells, and the content in cell A1 has been split into separate cells.

drag the fill handle over to the right cells

3. And then continuing drag the fill handle down to the range that you want to apply this formula, and all the data in column A will be separated on different cells as you like. See screenshot:

drag the fill handle down to the range that you want to apply this formula


arrow blue right bubble Split word or number into separate cells with Kutools for Excel

Kutools for Excel’s Split Cells feature is a powerful tool which can help you to split cell content into separated columns or rows with specific delimiters, at the same time, it also can separate the text and number into two columns.

Kutools for Excel offers over 300 advanced features to streamline complex tasks, boosting creativity and efficiency. Enhanced with AI capabilities, Kutools automates tasks with precision, making data management effortless. Detailed information of Kutools for Excel...         Free trial...

After installing kutools for Excel, please do as follows:

1. Select the cells that you want to split.

2. Then click Kutools > Merge & Split > Split Cells, see screenshot:

click Split Cells feature of kutools

3. In the Split Cells dialog box, please select Split to Columns under the Type, then check Specify width under the Split by section, and enter the number 1 into the text box which means to split the word into separated cells by each one character. See screenshot:

set options in the dialog box

4. Then click Ok button, another prompt box is popped out to remind you select a cell to output the result, see screenshot:

select a cell to output the result

5. And then click OK, the cell contents in the selection have been split to individual characters. See screenshot:

the cell contents are split to individual characters

 Download and free trial Kutools for Excel Now!


arrow blue right bubble Split word or number into separate cells with VBA code

If you are interested in VBA code, the following code also can do you a favor.

1. Hold down the ALT + F11 keys in Excel to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: Split word into separate cells

Sub SplitStuff()
'Updateby Extendoffice
Dim Rng As Range
Dim InputRng As Range, OutRng As Range
xTitleId = "KutoolsforExcel"
Set InputRng = Application.Selection
Set InputRng = Application.InputBox("Range :", xTitleId, InputRng.Address, Type:=8)
Set OutRng = Application.InputBox("Out put to (single cell):", xTitleId, Type:=8)
Application.ScreenUpdating = False
For Each Rng In InputRng
    xValue = Rng.Value
    xRow = Rng.Row
    For i = 1 To VBA.Len(xValue)
        OutRng.Cells(xRow, i).Value = VBA.Mid(xValue, i, 1)
    Next
Next
Application.ScreenUpdating = True
End Sub

3. Then press F5 key to run this code, and a prompt box will remind you to select the data range that you want to use, see screenshot:

vba code to select the data range

4. Click OK, and another prompt box will pop out to tell you to select a cell for locate the result.

select a cell for locate the result

5. Then click OK, and the words or numbers in the selected cells have been split to individual characters. See screenshot:

the words are split to individual characters


arrow blue right bubble Combine separated letters or numbers into one word or number

Combine separated letters or numbers into one word or number

If you want to combine these separated cell letters into one word by contrast with above methods, Kutools for Excel's Combine utility can help you combine them into one cell as quickly as you can.

Combine separated letters or numbers into one cell by kutools

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!


Related articles:

How to extract first / last / nth word from text string in Excel?

How to extract first letter of each word from cell?

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...


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!