Example : DT
Column0 Column1 Column2 Column3 Column4
Row 0 Test1 2 3 4 2
Row 1 Test1 2 5 3 1
Row 2 Test1 1 4 2 3
I need sum of each row specific columns. End result needed is.
Sum = DT.Rows(0)(2)+DT.rows(0)(3) = 7
Sum = DT.Rows(1)(2)+DT.rows(1)(3) = 8
Sum = DT.Rows(2)(2)+DT.rosw(2)(3) = 6