Page 1 of 1

Calculated column based on joining two strings

Posted: Mon Mar 01, 2010 11:10 am
by Naveen Aggarwal
Is it possible to have a calculated column after joining two or more strings ?
In simple terms is it possible to join (concatenate) two strings or joining a number and a string ?

Calculated column based on joining two strings

Posted: Mon Mar 01, 2010 6:20 pm
by Edward
Hi

Yes, that is possible. You can join any type of columns like follows:

ToString(MyDataSource.MyDataColumn1) + ToString(MyDataSource.MyDataColumn2)

Thank you.