Oct 18, 2013 #1 khan82 Technical User Joined Feb 23, 2012 Messages 57 Location 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
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
Oct 18, 2013 #2 pmax9999 Technical User Joined May 6, 2007 Messages 1,106 Location AU Try: Code: Split({Table.Field},';')[2] + ' ' + Split({Table.Field},';')[1] Cheers Pete Upvote 0 Downvote
Oct 21, 2013 Thread starter #3 khan82 Technical User Joined Feb 23, 2012 Messages 57 Location CA thanks man! works like a charm. Upvote 0 Downvote