Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

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

Recommended Posts

  • Newbies
Posted

If field one begins with a capital letter and field

two begins with a lowercase letter, (the sentence was split into two) how do I search to find all field two's that begin with lowercase and join them back up with field one and leave all field two's that begin in uppercase alone?;).

Posted

This is the calc that you have to apply to a [color:red]copy of your DB.

1)Insert the cursor into the field1

2)Records --> Replace Field Contents... --> Replace with calculated result: --> Specify

Case (

Length ( Filter ( Left ( field2 ; 1 ) ; "ABCDEFGHJKILMNOPQRSTUVWXYZ" ) ) ; field2 ;

field1 & " " & field2

)

Remember to do this to a [color:red]COPY of your DB

Posted

A little typo:

Case (

Length ( Filter ( Left ( field2 ; 1 ) ; "ABCDEFGHJKILMNOPQRSTUVWXYZ" ) ) ; [color:red]field1 ;

field1 & " " & field2

)

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