Kurt Knippel Posted October 4, 2001 Posted October 4, 2001 My guess is that a calculated field such as Company & " - " & CustomerFirst & " - " & City in each file would satisfy your requirement, assuming that this becomes unique enough. How many guys named "Joe" work as Acme, Inc in Los Angeles?
ginger Posted October 4, 2001 Posted October 4, 2001 Dear CaptKurt Thank you so very much for your help!!It worked beautifully and with alittle bit of "trial and error" I modifed to return more info!!Again THANK YOU!!! If I could be so bold though, I have encountered a new problem regarding a phone number field. We are importing records from an excel spread sheet, that was originally created in lotus (it appears), at any rate I cannot get the phone number cell, when imported to the filemaker field "phone number" to hold the formatting - i.e. (###)###-####, I consistanly get ##########. Have tried numerous formatting changes in excel as well as filemaker. Any ideas/suggestions?? Thank you!!
Kurt Knippel Posted October 5, 2001 Author Posted October 5, 2001 In almost all cases the formatting is simply a display mask and is not actually part of the data. I would suggest that you either format the data in Filemaker or in Excel via calculations.
ginger Posted October 5, 2001 Posted October 5, 2001 Help please!! Am fairly new to FM (must have an excuse for my ignorance I guess). Have two files (1) Contacts (1) Mailer. Need to "Match" Company Name, Customer First Name and City in both files. When this criteria is established copy the address from Contacts File to Mailer File. Have spent hours in the books and the help area and am totally baffled....any "simple" ideas for a "simple mind"??? Thanking you in advance for any assistance!!!
DykstrL Posted October 5, 2001 Posted October 5, 2001 Use a calculation to change the phone number to a number, then back to text in the format you want. This is what we use for a ###-###-#### format: Middle(NumToText(Abs(TextToNum(PhoneEnter)*10000000)), 1, 3) & "-" & Middle(NumToText(Abs(TextToNum(PhoneEnter)*10000000)), 4, 3) & "-" & Middle(NumToText(Abs(TextToNum(PhoneEnter)*10000000)), 7, 4) It won't matter what format the phone number (PhoneEnter) is entered, all alpha characters are ignored. For the (###) ###-#### format try: "(" & Middle(NumToText(Abs(TextToNum(PhoneEnter)*10000000)), 1, 3) & ") " & Middle(NumToText(Abs(TextToNum(PhoneEnter)*10000000)), 4, 3) & "-" & Middle(NumToText(Abs(TextToNum(PhoneEnter)*10000000)), 7, 4)
Recommended Posts
This topic is 8518 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 accountSign in
Already have an account? Sign in here.
Sign In Now