Oct 18, 2013 #1 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
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 May 6, 2007 1,106 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 Feb 23, 2012 57 CA thanks man! works like a charm. Upvote 0 Downvote