Jump to content

removing letters from the right


This topic is 6117 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I have a field which has 23 numbers and I would like to remove the first 10 from the field.

for example

the number is

"27457839462738493823432"

I would like to have the following remain in my field

"2745783946273"

I understand how to find it with right function but not how to remove the 10 digits from the right.

Thank you

Link to comment
Share on other sites

in a script it would be

SetField (yourfield; Left(yourfield;length(yourfield)-10))

or you could do a replace with calculated result

Left(yourfield;length(yourfield)-10)

Link to comment
Share on other sites

This topic is 6117 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.