How can I concatenate values of two data columns and show the concatenated
value in the third column. I am using a XML file which contains data and I am
using DataSet’s ReadXml method to populate DataSet.
I want FirstName and LastName column to show as one column containing full
name. for eg. “Shane” “Warne” as “Shane Warne”
Thanks
Ben Strackany - 30 Nov 2004 16:07 GMT
You could add a Column and set the Expression property to "FirstName + ' ' +
LastName"

Signature
Ben Strackany
www.developmentnow.com
<a href="http://www.developmentnow.com">dn</a>
> How can I concatenate values of two data columns and show the concatenated
> value in the third column. I am using a XML file which contains data and I am
[quoted text clipped - 4 lines]
>
> Thanks