I am using the following expression to give me the first initial of the first and last names (concatenated into the "Name" field):
Initials: Left([Name],1)+Mid([Name],InStr([Name],""),2)
Does anyone have any ideas on how I might be able to accommodate for hyphenated surnames (such as: John Boxer-Smith) to return J B S as the initials?
Thanks!
Initials: Left([Name],1)+Mid([Name],InStr([Name],""),2)
Does anyone have any ideas on how I might be able to accommodate for hyphenated surnames (such as: John Boxer-Smith) to return J B S as the initials?
Thanks!