Forum Discussion
What delimiter shall I use?
- Feb 24, 2025
That's as Patrick2788 suggested, or if you prefer with formula, practically the same could be
=TRIM( TEXTSPLIT(SUBSTITUTE( <line>, "), (", "),:(" ), ",:") )
Above for single row, how to split texts in 2D you may find patterns, few of them. But again, that will be spill, not table.
Thanks SergeiBaklan , any other solution for guys like me :( where in our Excel, REGEX is not available.
Br,
Anupam
That's as Patrick2788 suggested, or if you prefer with formula, practically the same could be
=TRIM( TEXTSPLIT(SUBSTITUTE( <line>, "), (", "),:(" ), ",:") )
Above for single row, how to split texts in 2D you may find patterns, few of them. But again, that will be spill, not table.
- anupambit1797Feb 24, 2025Iron Contributor
Thanks a lot SergeiBaklan , last question on this topic :), can you please also share a formula to count the number of columns with non-zero elements like below, in column "AI":-
- SergeiBaklanFeb 24, 2025Diamond Contributor
That could be like
=COUNTIFS( C2:AH2, "<>(0, 0)" )
- anupambit1797Feb 24, 2025Iron Contributor
Thank you so much SergeiBaklan