Hi, How do parse P1000 into 1000? It will always start with "P" and following with 4 digits.
Hi @wenyg
One way to do is.
Many thanks
Shanker V
Another way to do this using regex.
(\d{4})
@wenyg Another way of doing this
@wenyg ,
if the string is always P followed by 4 digits, the data cleanse and Regex are expensive overkill.
right([field1],4) is the easiest way.
cheers,
mark