I can't get this to work properly.
I have a text field named "VP Name" The first name and last name are separated by a " ".
Within a query, I need the First Name Initial and Last Name of the VP Name to be displayed.
Getting the First Name Initial is easy, left([VP Name],1)
I can't get the last name to work properly. Here's what I've started with, mid([VP Name], instr([VP Name]," "))
I receive the error message, Data type mismatch in criteria expression.
If I try using right instead of mid, I receive the same error message.
I've been albe to use len([VP Name])-instr([VP Name]," ") to calculate the number of characters, but when I combine with right([VP Name], ###), I receive the error message.