Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I wnat to break a field upin two fields. T

Status
Not open for further replies.

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?
 
LastName - Left([YourField], Instr([YourField], ",") - 1)
FirstName - Mid([YourField], Instr([YourField], ",") + 1, Len([YourField]))
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top