Hello,I need to parse data into a new column every 5 characters. For example:
Input:
Output:
I think Text to columns can do it, but i'm stuck on the delimiter.Thank you.
@BautistaC888
You could use regex to parse this:
(.{5})(.{5})
Regex tool - parse mode:
That will give you two columns of any 5 characters.
@BautistaC888,
Please see below:
Attached the workflow,
Hope this helps,
Regards