How to reverse the sign of the numbers present in the cell in datatable

Hi Karan,

  1. Filter original data table to get only these 3 columns in a new data table.
  2. you can multiply specific row values with -1 and save it in the new data table for the required columns 1 by 1.
  3. Delete the 3 columns from original data table.
  4. Add columns from new data table to specific position in original data table using set ordinal method.

Hope this helps…