
In Excel, is there a way to split a row with one cell with multiple values into multiple rows with each of their correct values?
3 Answers By Expert Tutors

David R. answered 04/12/19
Professional and Academic Application of Excel, SQL, and Python
Depending on what your particular data is, you can likely use Text-to-Coulmns here. Try:
1) Select the cell in question
2) Data > Text to Columns (within Data Tools)
3) Choose either Fixed-Width or Delimited
Fixed-Width: use this if your data is equally spaced (e.g., 123456 to become 12, 31, 56)
Delimited: use this if you have separators in your data (e.g., UserName-456-Georgia to become Username, 456, Georgia)
4) If choosing Delimited, set your Delimiter (e..g, tab, comma, etc.)
This should output your one cell into many cells, horizontally. If these do not solve your problem you will likely have to use IF statements with string splicing function such as LEN, LEFT, RIGHT, etc.

Patrick B. answered 03/23/19
Math and computer tutor/teacher
you can do text to columns
otherwise you will have to write some code...
sound like you will have to parse the text over delimiters such as space or comma separated values
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Peter K.
is there any chance you can put up a picture to show? There are a few ways to accomplish what you're talking about, so I might be able to give you an answer if i see the details of what you want to do.03/23/19