Newbies CreepyCody Posted August 14, 2001 Newbies Posted August 14, 2001 Hope this doesn't make me sound too much like a newbie, but: I have a list of names that I import from Excel as First Name and Last Name. I need to make a merged name for labeling purposes. Ex: Derek Jeter----->jeter.d There is other info at the end, but this is where my problem is. Can I define the First Name field to have a maximum of 1 character no matter what is imported? Sorry if this just way too simple, and TIA Creepy
Newbies CreepyCody Posted August 14, 2001 Author Newbies Posted August 14, 2001 I'm an idiot...got it. Thx to all the time I may have wasted
bobsmith Posted August 15, 2001 Posted August 15, 2001 No idiots here otherwise you couldn't ask the questions. RightWords(name,1) &"." & Left(name,1) Using your example this name= Derek Jeter The calculation takes the right word "Jeter" adds . and the first letter of the left word or the first name. If all names are two words no problem but if there are different number of words in different records you may have to make some adjustments.
Recommended Posts
This topic is 8871 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