As per client request....
I have a form that has his closing attorney information in it (for real estate transactions). The form has your general atty name, firm, addr, city, state, zip, phone, cell, & email fields with a few other fields.
The name of the firm will be linked on another form (Properties Under Contract), but he wants ALL the contact info in one field on the PUC form. I can create a field on the Atty form that will be hidden that will basically concatenate the information. Here is example:
=[Addr]+"," + " "+[City]+","+ " "+[State]+" "+[Zip]
which returns:
123 Main Street, Anywhere, Montana 12345
Fine and good, but I want to be able to add a hard return to this same field, then add the phone info, something like this:
=[Addr]+"," + " "+[City]+","+ " "+[State]+" "+[Zip]
+[MainPhone]"/"[MobilePhone]
+
So the return would show on each different line of the field like this:
123 Main Street, Anywhere, Montana 12345
555-123-5478/555-232-8941
johndoe@anycompany.com
NOT Visual Basic but written in the actual field on the form. My problem is how do I get it to put a hard return in so that I can have a 2nd and 3rd line in that field?
Any ideas? Thanks for any help you can give. I don't know how to program in VB.
I have a form that has his closing attorney information in it (for real estate transactions). The form has your general atty name, firm, addr, city, state, zip, phone, cell, & email fields with a few other fields.
The name of the firm will be linked on another form (Properties Under Contract), but he wants ALL the contact info in one field on the PUC form. I can create a field on the Atty form that will be hidden that will basically concatenate the information. Here is example:
=[Addr]+"," + " "+[City]+","+ " "+[State]+" "+[Zip]
which returns:
123 Main Street, Anywhere, Montana 12345
Fine and good, but I want to be able to add a hard return to this same field, then add the phone info, something like this:
=[Addr]+"," + " "+[City]+","+ " "+[State]+" "+[Zip]
+[MainPhone]"/"[MobilePhone]
+
So the return would show on each different line of the field like this:
123 Main Street, Anywhere, Montana 12345
555-123-5478/555-232-8941
johndoe@anycompany.com
NOT Visual Basic but written in the actual field on the form. My problem is how do I get it to put a hard return in so that I can have a 2nd and 3rd line in that field?
Any ideas? Thanks for any help you can give. I don't know how to program in VB.