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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Manipulate data in a string

Status
Not open for further replies.

khan82

Technical User
Feb 23, 2012
57
CA
I have a field that contains a name but its in the format last name first, first name last.

the last name and first name is seperated by a ;

how can i write a formula to display first name first and last name second? do i use a mid formula?

Thanks
 
Try:

Code:
Split({Table.Field},';')[2] + ' ' + Split({Table.Field},';')[1]

Cheers
Pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top