K
Kristina
I have a field that houses a first and last name (I don't
want them in separate fields). I want to run a query that
returns the first character of each word in that field
(aka Initials). So if the text in the field is "Kristina
Smith", it should come back with "KS".
I can get the first initial, but not the second. So far
the SQL I have is:
Initials: Mid([Name],1,1) & Mid(Right([Name],InStr
([Name]," ")-2),1,1)
Maybe there's a different function I should be using?
Any assistance is much appreciated.
want them in separate fields). I want to run a query that
returns the first character of each word in that field
(aka Initials). So if the text in the field is "Kristina
Smith", it should come back with "KS".
I can get the first initial, but not the second. So far
the SQL I have is:
Initials: Mid([Name],1,1) & Mid(Right([Name],InStr
([Name]," ")-2),1,1)
Maybe there's a different function I should be using?
Any assistance is much appreciated.