Hi @Dick Watson
First, we can kown the formula ={"a.b";"c.d"}
in one Excel cell will return 1 two-dimensional array from plane data, but the array formula {={"a.b";"c.d"}}
in one Excel cell will just show the first dimension data of the array. It is by design.
To let the array {"a.b";"c.d"} show 'a' in the first row, first column; show 'b' in the first row, second column; show 'c' in the second row, first column and show 'd' in the second row, second column, I suggest you add 'TEXTJOIN' function to convert this array to a string in one cell.
Then perform both row splitting and column splitting for this string. Combining this step and the step above, the formula can be =TEXTSPLIT(TEXTJOIN(";",TRUE,{"a.b";"c.d"}),".",";")
.
If you want to convert 1.2.3.15-style decimal IP addresses to hex 01.02.03.0F, the formula can be =TEXTJOIN(".",,DEC2HEX(TEXTSPLIT(TEXTJOIN(";",TRUE,{"1.2";"3.15"}),".",";"),2))
.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.