Sep 29, 2006 #1 funbunch Programmer Aug 5, 2006 1 US The text is in one field with Lastname, FirstName. It want to seperate this. Can you give me equation for this?
The text is in one field with Lastname, FirstName. It want to seperate this. Can you give me equation for this?
Sep 29, 2006 #2 rjoubert Programmer Oct 2, 2003 1,843 US LastName - Left([YourField], Instr([YourField], ",") - 1) FirstName - Mid([YourField], Instr([YourField], ",") + 1, Len([YourField])) Upvote 0 Downvote
LastName - Left([YourField], Instr([YourField], ",") - 1) FirstName - Mid([YourField], Instr([YourField], ",") + 1, Len([YourField]))