SEPARATOR
Syntax
SEPARATOR.<TYPE>(VALUE)Arguments
Example
SEPARATOR.DECIMAL('d')
SEPARATOR.THOUSAND('t')

Last updated
Was this helpful?
Use the SEPARATOR function to set custom delimiters for decimals and thousands.
SEPARATOR.<TYPE>(VALUE)TYPE - DECIMAL or THOUSAND depending on the separator you need to change.
VALUE - The custom separator to use instead of the default ones.
SEPARATOR.DECIMAL('d')
SEPARATOR.THOUSAND('t')
When we click the buttons, the default '.' separator for decimal and ',' separator for thousands are replaced with 'd' and 't' respectively. The buttons use the SEPARATOR script options internally to change the separator.

Last updated
Was this helpful?
Was this helpful?