Currently looking for an easy way to convert 99999.99 to 9.999,99 format:
This is what I have currently:
CREATE TEMP FUNCTION FORMAT_DE_VALUE(number FLOAT64)
RETURNS STRING
LANGUAGE js
AS """
return number.toFixed(2) + ' €';
""";
TRY 1:
return number.toLocaleString('de-DE', { style: 'currency', currency: 'EUR' });
NO Success - number stays the same