DotNetBlocks
Programmer
Hello,
How can I merge 3 data.datatables so that all the datarows are mixed up together?
Babloome
How can I merge 3 data.datatables so that all the datarows are mixed up together?
Code:
Example:
table 1
tr1
tr2
tr3
tr4
tr5
table2
te1
te2
te3
te4
te5
table 3
tb1
tb2
tb3
tb4
Result:
----------
merged table
te5
tb1
tr3
tr5
te2
tb4
tb3
tr1
te3
te1
tb2
tr2
tr4
tb3
tb5
Babloome