Share via

Split Cell in Excel WITHOUT DELIMITER

Anonymous
2025-01-21T19:01:43+00:00

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

Microsoft 365 and Office | Excel | For business | Windows

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.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Ashish Mathur 101.9K Reputation points Volunteer Moderator
    2025-01-21T23:24:57+00:00

    Hi,

    Share some data to work with and show the expected result.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2025-01-21T21:43:02+00:00

    Or use Text to Columns in the Data Tools section of the Data tab of the ribbon:

    Then use Fixed Width in Step 1 of the dialogues.

    Was this answer helpful?

    0 comments No comments
  3. HansV 462.6K Reputation points
    2025-01-21T19:10:15+00:00

    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)

    Was this answer helpful?

    0 comments No comments