Remove numeric format from all values in a table

Set number format to Unformatted with 2 decimal places

Table_1.getNumberFormat().setScaleUnit(NumberFormatScaleUnit.Unformatted);
Table_1.getNumberFormat().setDecimalPlaces(2);
Code language: JavaScript (javascript)
Scroll to Top