0

I have a single text string with words separated by spaces, e.g. "blah cah nah....".

Say I would like to split this into n words by m columns, i.e., a word per cell. I know I can use text to columns to get the m columns, but how about the rows? I could hash together a cut and paste macro that'd do it, but are there any built in functions that could do the same thing?

MadMonty
  • 101

1 Answers1

1

Something like the following should work:

  1. Use text to columns to get everything in a single row.

  2. Use transpose to change the single row into a single column.

  3. Use transpose again to split the single column into multiple columns.

DavidPostill
  • 162,382