Concatenating DataColumn

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
You could add a Column and set the Expression property to "FirstName + ' ' +
LastName"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top