J JBurlison Registered User. Local time Today, 11:47 Joined Mar 14, 2008 Messages 172 May 6, 2008 #1 i want to separate first and last name, also after doing so automatically generate the e-mail address being first initial, last name. can someone give me and example as to how to do this? or what functions to use?
i want to separate first and last name, also after doing so automatically generate the e-mail address being first initial, last name. can someone give me and example as to how to do this? or what functions to use?
mresann Registered User. Local time Today, 08:47 Joined Jan 11, 2005 Messages 357 May 6, 2008 #2 Yes, there are some string functions to use. You can use this technique directly in a query or in a module using VBA. I'll do the VBA here. strFirstName="Johhny" strLastName="Goetz" strEmailName = Left(strFirstName,1) & strLastName & "@myemail.com" This returns "JGoetz@myemail.com". Check out other functions such as Right, InStr, Mid, StrConv, and Chr to name a few.
Yes, there are some string functions to use. You can use this technique directly in a query or in a module using VBA. I'll do the VBA here. strFirstName="Johhny" strLastName="Goetz" strEmailName = Left(strFirstName,1) & strLastName & "@myemail.com" This returns "JGoetz@myemail.com". Check out other functions such as Right, InStr, Mid, StrConv, and Chr to name a few.
J JBurlison Registered User. Local time Today, 11:47 Joined Mar 14, 2008 Messages 172 May 6, 2008 #3 im trying to do it the opposite way i have a full name(s) and i want to break them up Ex i want to make John Todd Firstname= John Lastname = Todd How would i do that?
im trying to do it the opposite way i have a full name(s) and i want to break them up Ex i want to make John Todd Firstname= John Lastname = Todd How would i do that?
M Mike375 Guest May 6, 2008 #4 FirstName: Left([FieldName],InStr(1,[FieldName]," ")-1) LastName: Right(Trim([FieldName]),Len(Trim([FieldName]))-InStr(1,[FieldName]," "))
FirstName: Left([FieldName],InStr(1,[FieldName]," ")-1) LastName: Right(Trim([FieldName]),Len(Trim([FieldName]))-InStr(1,[FieldName]," "))
doco Power User Local time Today, 08:47 Joined Feb 14, 2007 Messages 482 May 6, 2008 #5 FullName = Trim( FieldName ) ' no surprises FirstName = Left( FullName, InStr( 1, FullName, " " ) -1 ) LastName = Trim( Right( FullName, Len( FullName) - Len( FullName ) ) ) Last edited: May 6, 2008
FullName = Trim( FieldName ) ' no surprises FirstName = Left( FullName, InStr( 1, FullName, " " ) -1 ) LastName = Trim( Right( FullName, Len( FullName) - Len( FullName ) ) )
J JBurlison Registered User. Local time Today, 11:47 Joined Mar 14, 2008 Messages 172 May 6, 2008 #6 thanks guys works like a charm!