Frazer Posted November 24, 2000 Posted November 24, 2000 Is there anyway I can run a calculation which looks at a field and copies across the first letter of each word? In essence I have a field of names and I want to run a calc which will convert this into initials. Thanks
dspires Posted November 24, 2000 Posted November 24, 2000 If your field is "Name", the this will do it: Left(LeftWords(Name,1),1) & Left(MiddleWords(Name,2,1),1) & Left(MiddleWords(Name,3,1),1)
Vaughan Posted December 1, 2000 Posted December 1, 2000 Not all names are in "First Middle Last" format, so this will not be reliable under all circumstances. Ideally the first middle and last names should be in separate fields.
Recommended Posts
This topic is 8762 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