Share via

Can and how when using TEXTSPLIT can it be converted to show as a colunn instean of a row.

Anonymous
2023-06-26T19:17:33+00:00

When I use PivotData, all the results appear as per screenshot in row 5. How using TEXTSPLIT can it be converted to each cell down. (DAX codes interfere with what I want)![](https://learn-attachment.microsoft.com/api/attachments/746598c3-36bb-42aa-8775-9fe0ee2b2f92?platform=QnA

Microsoft 365 and Office | Excel | For home | 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

Answer accepted by question author

Anonymous
2023-06-27T01:31:48+00:00

Although using Transpose is an option, here is how I would do it:

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

Answer accepted by question author

Anonymous
2023-06-26T20:28:25+00:00

What exactly is the contents of B5?

Here are two more options:

=TOCOL(TEXTSPLIT(B5," "))

=WRAPROWS(TEXTSPLIT(B5," "),1)

and if there are 4 characters in B5

=WRAPCOLS(TEXTSPLIT(B5," "),4)

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

Answer accepted by question author

HansV 462.6K Reputation points
2023-06-26T20:15:11+00:00

You can wrap the TEXTSPLIT function in TRANSPOSE

=TRANSPOSE(TEXTSPLIT(B5, " "))

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more