
- MS Excel Basics
- Excel - Home
- Excel - Getting Started
- Excel - Explore Window
- Excel - Backstage
- Excel - Entering Values
- Excel - Move Around
- Excel - Save Workbook
- Excel - Create Worksheet
- Excel - Copy Worksheet
- Excel - Hiding Worksheet
- Excel - Delete Worksheet
- Excel - Close Workbook
- Excel - Open Workbook
- Excel - Context Help
- Editing Worksheet
- Excel - Insert Data
- Excel - Select Data
- Excel - Delete Data
- Excel - Move Data
- Excel - Rows & Columns
- Excel - Copy & Paste
- Excel - Find & Replace
- Excel - Spell Check
- Excel - Zoom In-Out
- Excel - Special Symbols
- Excel - Insert Comments
- Excel - Add Text Box
- Excel - Undo Changes
- Formatting Cells
- Excel - Setting Cell Type
- Excel - Setting Fonts
- Excel - Text Decoration
- Excel - Rotate Cells
- Excel - Setting Colors
- Excel - Text Alignments
- Excel - Merge & Wrap
- Excel - Borders and Shades
- Excel - Apply Formatting
- Formatting Worksheets
- Excel - Sheet Options
- Excel - Adjust Margins
- Excel - Page Orientation
- Excel - Header and Footer
- Excel - Insert Page Breaks
- Excel - Set Background
- Excel - Freeze Panes
- Excel - Conditional Format
- Working with Formula
- Excel - Creating Formulas
- Excel - Copying Formulas
- Excel - Formula Reference
- Excel - Using Functions
- Excel - Builtin Functions
- Advanced Operations
- Excel - Data Filtering
- Excel - Data Sorting
- Excel - Using Ranges
- Excel - Data Validation
- Excel - Using Styles
- Excel - Using Themes
- Excel - Using Templates
- Excel - Using Macros
- Excel - Adding Graphics
- Excel - Cross Referencing
- Excel - Printing Worksheets
- Excel - Email Workbooks
- Excel- Translate Worksheet
- Excel - Workbook Security
- Excel - Data Tables
- Excel - Pivot Tables
- Excel - Simple Charts
- Excel - Pivot Charts
- Excel - Keyboard Shortcuts
- MS Excel Resources
- Excel - Quick Guide
- Excel - Useful Resources
- Excel - Discussion
Excel tutorial: split text, number, and date cells (separate into multiple columns)
It's possible that, for certain reasons, you'll need to divide the text in a single cell into many cells. This lesson is broken down into three sections: dividing text cells, dividing numeric cells, and dividing date and time cells. You will have a better understanding of how to approach the task of splitting when you are presented with a variety of examples, which are provided throughout each section.
Split text
You may use any one of the following techniques to divide a single text cell into numerous columns based on a certain delimiter, such as a comma, a space, a dash, or another character.
Step 1
When dividing cells, one of the most common tools that people turn to is Excel's built-in Text to Columns option. You may use the Text to Columns function in the manner described here to divide the cells in the Text Strings column according to commas, as seen in the screenshot that follows.
Step 2
After selecting the range of columns you want to divide by comma, go to the Data menu and choose Text to Columns.
Step 3
Keep the Delimited radio button selected in the Convert Text to Columns Wizard – Step 1 of 3 dialogue box, and then click the Next button after making your selection.
Step 4
In the Convert Text to Columns Wizard – Step 2 of 3 dialogue box, pick a delimiter according to your requirements (in this particular instance, I merely check the Comma option), and then click the Next button.
Step 5
Click the "up arrow" button in the dialogue box for the last step to choose a cell to output the split texts, and then click the "Finish" button at the bottom of the box.
Step 6
The texts that fall within the specified range are then separated using commas and arranged in the various columns, as is seen in the following example.
Split number
You may use the TRUNC function to divide a number at a decimal point in the spreadsheet.
Determine the part that is an integer.
To determine a number that is an integer, use this formula.
=TRUNC(A2)
Determine the portion down to the decimal place.
To determine a number that is an decimal, use this formula.
=A2-TRUNC(A2)
Split date
Suppose you have a list of dates in the range A2:A5, and you want to divide the values for each date into three independent columns: one for the day, one for the month, and one for the year. Following are three different approaches that might assist you in reaching your goal of dividing dates.
In Excel, you may break up a date into its component parts of day, month, and year by using three different formulae that are based on the DATE function, the MONTH function, and the YEAR function, respectively.
For DAY
Utilizing this technique, determine the month that is included inside the date.
=DAY(A2)
For MONTH
Utilizing this technique, determine the day that is included inside the date.
= MONTH(A2)
For YEAR
Utilizing this technique, determine the year that is included inside the date.
=YEAR(A2)
- Related Articles
- Excel Tutorial – How to Combine Columns, Rows, and Cells?
- Excel Tutorial: Combine Multiple Workbooks/Worksheets into One
- Excel tutorial – extract text or number by specific position
- How to center text across multiple cells in Excel?
- How to Copy and Paste Multiple Non-Adjacent Cells/Rows/Columns in Excel?
- Excel cell conversion tutorial – Convert units, text and number, currencies, time zones, etc
- Concatenate date and time from separate columns into a single column in MySQL
- Split keys and values into separate objects - JavaScript
- How to split a string column into multiple columns in R?
- How To Add Text Cells Together Into One Cell In Excel?
- Add text and number into specified position of cell in Excel
- How to break or split number into individual digits in Excel?
- Write a program in Python to split the date column into day, month, year in multiple columns of a given dataframe
- How to AutoSum Multiple Rows and Columns in Excel?
- Excel COUNTIFS Function – Count cells with multiple criteria – AND logic and OR
