In saved search formulas how can I force a currenc...
# administration
g
In saved search formulas how can I force a currency field to display in the format 9999.99 with no currency symbol and always two decimal places even when it's 0.00?
m
ROUND({field},2)
Formula numeric
g
did that, still comes through as an integer
it drops trailing zeros
m
Maybe RPAD?
g
ChatGPT found the answer
TO_CHAR(TO_NUMBER(REPLACE({amount}, ',', '')), 'FM9999999990.00')
RPAD kinda worked but it left out the decimal