I am trying to seperate a name field so that only the first part shows.
Data I am trying to seperate looks like this:
John/Mary
Frank/Jennifer
Ben
Jonathan/Janet
I tried using this:
However, when I use it the 'Ben' entry disappears and the first part of the other entries stay behind but keep the '/' character at the end.
Anyone any ideas to help me?
Data I am trying to seperate looks like this:
John/Mary
Frank/Jennifer
Ben
Jonathan/Janet
I tried using this:
Code:
Left([name],InStr([name],"/"))
However, when I use it the 'Ben' entry disappears and the first part of the other entries stay behind but keep the '/' character at the end.
Anyone any ideas to help me?