A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi,
Share some data to work with and show the expected result.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Split Cell in Excel either into 2 column in that cell, or 2 rows in that cell. How? WITHOUT DELIMITER. Shouldn't there just be a thing where you right click a cell, and can split it into columns, or split into rows?????
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Hi,
Share some data to work with and show the expected result.
If the number of characters that you want to extract on the left (or on the right) is fixed, you can use LEFT and RIGHT.
For example, if the first part should be 4 characters, and the rest should be the second part:
=LEFT(cell, 4)
=RIGHT(cell, LEN(cell)-4)