Page 1 of 1

lastname,firstname

Posted: Mon Aug 02, 2010 8:06 am
by arnie_nits
Hi ,

How would I change lastname,firstname to firstname.lastname
Please suggest.

regards,
Arnie.

Posted: Mon Aug 02, 2010 8:09 am
by Sainath.Srinivasan

Code: Select all

Field(yourFieldName,',', 2) : '.' : Field(yourFieldName,',', 1)

Posted: Mon Aug 02, 2010 8:10 am
by anbu
Assuming lastname,firstname comes as a single field in your source. If not then let us know

Code: Select all

Field(name,",",2) : '.' : Field(name,",",1)

Posted: Mon Aug 02, 2010 9:22 am
by arnie_nits
Thanks..it works

Posted: Mon Aug 02, 2010 9:23 am
by arvind_ds
Please mark the topic as closed.