Hello,
Could you, please help me to remove text from the string below:
S1479/19
KLL0245/33
Thank you,
Andreea
@DE22 try this:
RegexReplace([field],'\l','')
which will remove all letters from your field - i'm assuming that's what you want.
Hope that helps,
Ollie
Hello @DE22,
Use this.
or
Thanks!
Thank a lot!