Need help to convert column value to 2 decimal

@Anneng
we can convert as following
grafik

An essential approach could look like:

  • use a for each row and iterate over all rows
  • use an assign for douing the conversion row(YourColNameOrIndex) = Convert.ToDouble(row(YourColNameOrIndex)).ToString(“F2”)
1 Like