Matt Leach Posted June 30, 2009 Posted June 30, 2009 I'm sure there is a way to do this but i am drawing a blank. I have a database that contains a Customer Table and Orders Table. On th customers table i have one field for first name, and one field for last name. I also have a button the create a new order that copies over some information about the customer to the orders table. On the Orders table, there is a field for Full Name (not separated as the customers table). Is there a way to copy the first and last name from the customers table first and last name fields and add it to the orders table in the full name field? I know i could wok around this by separating the fields on the orders table but for some reason this is the way the customer wants it.
mr_vodka Posted June 30, 2009 Posted June 30, 2009 Your orders table should use a lookup from the customers table. You can use a calc to concatenate the full name: FName & " " & LName
Matt Leach Posted June 30, 2009 Author Posted June 30, 2009 I received a message from Lee Smith with the following calculation that worked: FullName (calculation, Text Result) = First Name & " " & Last Name Thanks for the help, starting to get the hang of how these calculations are constructed.
Lee Smith Posted June 30, 2009 Posted June 30, 2009 LOL You must be following this with Email, as I removed my response immediately after it posted, because mr_vodka respones beat mine, with basically the same suggestion. Lee
Recommended Posts
This topic is 5684 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