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

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

Recommended Posts

Posted

I wish to do two things. First, I want to set up a field in File1 that is automatically formatted like a telephone number such that, if one type in the number 2125551212 it will look like (212) 555-1212.

Second, I would like to import a file of telephone numbers into a separate file (File2), which are formatted as digits only (i.e. 2125551212), and then find any of the corresponding phone numbers on File1.

Thanks,

The Mad Jammer

And then...there was nothing

cool.gif

Posted

OK.

Calc for phone number

"(" & Left(Phone Number,3) & ") " & Middle(Phone Number, 4, 3) & "-" & Right(Phone Number, 4)

Now, as to the match data from second database to main database, create a relationship from the second to first using the phone number fields( Lets call it PhoneRelationship).

Then, you can create a calc that is

If (IsValid(PhoneRelationship::PhoneNumber), 1, 0)

Then you will know which numbers exist.

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