Format all numeric values in a table

Set number format to Millions with 1 decimal place

Table.getNumberFormat().setScaleUnit(NumberFormatScaleUnit.Million);
Table.getNumberFormat().setDecimalPlaces(1);
Code language: JavaScript (javascript)
Scroll to Top