I would like a formula in excel that does what Text To Columns does. For example the following string in A1
" text with a comma, stays in one column",," keep starting blank text",1,2,3,"123"
I would like a formula in excel that does what Text To Columns does. For example the following string in A1
" text with a comma, stays in one column",," keep starting blank text",1,2,3,"123"
Copyright © 2021 Jogjafile Inc.

The following LET Function allows you to split the text into columns based on the splitter character (in this instance a comma). It ignores commas that are between quotes (the Delim argument - which has double quotes in it). It does this by ensuring there is an even number of quotes before the splitter character.
Breaking down each step in the LET formula:
Hopefully the notes explain clearly how this works and make it easy to modify.
If you want create a named Lambda to use you can use the following code to paste into the formula of a named range called SplitStringDelim (you can name it what you like of course). NB You can't have the line separators in this and I stripped the notes out of it.