Bikeman17 Posted March 19, 2003 Posted March 19, 2003 I want to extract the initials from John Smith. I've been able to get the J by doing this: Left(Name,1). But I am having difficulties to get the S. Any help would be nice! Bikeman
danjacoby Posted March 19, 2003 Posted March 19, 2003 Use the "MiddleWords" function to get to the second word. Use the "Left" function to choose the first letter of that word.
Bikeman17 Posted March 19, 2003 Author Posted March 19, 2003 I did this but no result: Left(Name,1) & MiddleWords(Name,2,Left(Name,1)) Bikeman
BobWeaver Posted March 19, 2003 Posted March 19, 2003 Try: Left(Name,1)&Left(MiddleWords(Name,2,1),1)
Lee Smith Posted March 19, 2003 Posted March 19, 2003 Hi Bikeman Here is a little variation to Bob's calculation incase you have initials in there too. Left(Employee,1)& Left(RightWords(Employee,1),1) HTH Lee
Recommended Posts
This topic is 7990 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