I have a simple formula an I want to show only 2 decimals in the result.
Income: $1,502.72
Expense: -$71.00
format(abs(prop("Income") + prop("Expense")))
Result: $1431.720000000001
Changing it to ceil, round or floor removes all decimals and I am trying to show only 2 decimals like this:
$1431.72
How can I do that?