Jump to content

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

Recommended Posts

Posted

Hi,

I've tried this for about 3 hours and gave up in frustation-I have a 12 figure number (example is 112233445566)-I want to use FP to insert a space after every second number so I end up with 11 22 33 44 55 66.

This has to be done in the field so when I import the text file with the original info, the conversion is done automatically-other wise I have to do it in Excel-anybody got any ideas?

Sandy

Posted

The calculation field has to be text output:

Left(myfield,2) & " " & Middle(myfield,3,2) & " " & Middle(myfield,5,2) & Middle(myfield,7,2) & " " & Middle(myfield,9,2) & " " Right(myfield,2)

Steve

Posted

Try this calc.

Left(Number,2) & " " &

Middle(Number,3,2) & " " &

Middle(Number,5,2) & " " &

Middle(Number,7,2) & " " &

Middle(Number,9,2) & " " &

Right(Number,2)

This topic is 7902 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.