I have a value in particular cell ( integer type ), Now I have to paste the new value ( integer type ) to the same cell using write cell activity. This activity replacing the new one with old one but I need to sum the new value + old value and write the result in same cell.
For Example : B2 have value 78, I have add 50 to the B2 value so the result should be 128 in B2 cell.
Thank you for solution. If 50 is comes from data table How can we add the value from DT and cint(result). For example in a write cell I need to write (row(1).tostring+cint(result)).tostring. Please help.
I am reading the cell as per your solution store the data in CellVal variable and adding Cellval to the value from DT (always integer).If I write (convert.Toint32(row(1)).tostring+Cint(Cellval).tostring also getting error like cannot convert generic type to system.Int32