split datatable column using c#
-
Hi i want to split column into multiple columns using c#. Ex. 100 rows in COLUMN_A , convert into COLUMN_A1(Firt 20 records) COLUMN_A2(next 20 records) COLUMN_A3(next 20 records) COLUMN_A4(next 20 records) COLUMN_A5(next 20 records) is it posiblie?
-
Hi i want to split column into multiple columns using c#. Ex. 100 rows in COLUMN_A , convert into COLUMN_A1(Firt 20 records) COLUMN_A2(next 20 records) COLUMN_A3(next 20 records) COLUMN_A4(next 20 records) COLUMN_A5(next 20 records) is it posiblie?
-
I have datatable that have one column in that 112 rows and i want to convert like that col1 20 rows (1 to 20) col2 20 rows (21 to 40) col3 20 rows (41 to 60) col4 20 rows (61 to 80) col5 20 rows (81 to 100) col6 20 rows (100 to 112)
-
I have datatable that have one column in that 112 rows and i want to convert like that col1 20 rows (1 to 20) col2 20 rows (21 to 40) col3 20 rows (41 to 60) col4 20 rows (61 to 80) col5 20 rows (81 to 100) col6 20 rows (100 to 112)
-
I tried looping but i cannot get exactly what i want...
-
I tried looping but i cannot get exactly what i want...