A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Use this formula:
=TEXTSPLIT(TEXTJOIN(";",TRUE,Table1[Column]),"/",";")
Kevin
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
When sent a array to text param to textsplit function her always return a one column.
Trying to force a row break with ; passing col and row delimiter
Or just use only column delimiter
Anyone confirm this a bug, have a workaround for this?
Topic set to other= same case on Mac and Windows
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
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.
Use this formula:
=TEXTSPLIT(TEXTJOIN(";",TRUE,Table1[Column]),"/",";")
Kevin
It's not a bug. The function is designed to operate on a single text string and split it out into rows and columns. When you pass an array to it, the TEXTSPLIT function does not actually see the array. The Excel formula engine interprets the array before passing it to TEXTSPLIT and it doesn't know what TEXTSPLIT will do. So it assumes that, since you passed a single column of values in, you will get a single column of values out and the rest is discarded.
Kevin
This formula eliminates the #N/A errors:
=IFERROR(TEXTSPLIT(TEXTJOIN("~",TRUE,Table1[Column]),"/","~"),"")
Kevin