View Single Post
  #1 (permalink)  
Old 01-14-2009, 2:52 PM
raafishaafi raafishaafi is offline
VB.NET Forum Newbie
.NET Framework: .NET 2.0 (VS 2005)
 
Join Date: Jan 2009
Age: 25
Posts: 1
Reputation: 0
raafishaafi is on a distinguished programming path ahead
Default Merging Columns in One Column

Hey,
I have a requirement, If in datatable the value of one column is null. I gotta show the value of other column in the same column.

For example:

Code:
id | name | descript | descriptionType
1  | ab   |          |    doc 
2  | pd   | pdf      |
3  | cd   |          |   Business
Result should be

Code:
id name descript
1 ab       doc
2 pd       pdf
3 cd       business.
Thanks in advance.
Reply With Quote