help with delimiter (1 Viewer)

aftershokk

Registered User.
Local time
Today, 19:54
Joined
Sep 5, 2001
Messages
259
I have a column with a full name as follows.

DRISCOLL MD,EDWARD F

I want to split into 2 columns. Anything to the right of the comma would be first name and anything to the left would be last name. I would not include the comma in the new columns.

thanks!:confused:
 

Dennisk

AWF VIP
Local time
Today, 19:54
Joined
Jul 22, 2004
Messages
1,649
use the INSTR function. This will give you the position of any character in a string.

The use the Left$ function and Right$ function to get the two fields
 

Peter Reid

Registered User.
Local time
Today, 19:54
Joined
Dec 3, 2003
Messages
134
Alternatively, look at the SPLIT function
 

Users who are viewing this thread

Top Bottom