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.