I'm trying to add a space in front of any text string that has a number to begin with.
EG.
1 Series
Is this possible? I've exhausted all of my knowledge!
I've tried using the formula tool but no luck.
Thanks
Hi @JDaviesInch
Give this a shot, I'm using regex match to check for a pattern that starts with 0-9
Hi @JDaviesInch ,
Just a cheeky bit of regex:
No doubt @MarqueeCrew will slap me around again...
M.
Hi,
This works exactly what I need it to do. However, When I output to an excel file the spaces are lost. Any idea why this would be?
Take a look at this thread. Looks like people have had luck swapping in another character or adding an apostrophe.
If you're using the non-breaking space from the post that @Luke_C mentioned, the replace field that you should in the regex tool is \xA0\d. "A0" is the hex value for the ASCII 160
Dan