Hi,
I have a
DataTable with 3 Records
col1 | col2 | col3 | col4 | col5|
1 |abc |7 | | |
1 |abc | | 9 | |
1 |abc | | |6 |
I want to group the data in the format
col1 | col2 | col3 | col4 | col5|
1 |abc |7 |9 |6 |
i Have to do it in the .cs page I can't do it SQL
Thanks