A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Although using Transpose is an option, here is how I would do it:
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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))
=WRAPROWS(TEXTSPLIT(B5," "),1)
and if there are 4 characters in B5
=WRAPCOLS(TEXTSPLIT(B5," "),4)
Answer accepted by question author
You can wrap the TEXTSPLIT function in TRANSPOSE
=TRANSPOSE(TEXTSPLIT(B5, " "))
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