AshleySolomon
2 years agoQrew Trainee
Formula - Rich Text field is not displaying zeros after the "."
I have a Formula - Rich Text field that is converting a Currency field "ToText". The value was Rounding the "cents" up to the nearest dollar value which I have solved for. However, now I can't get 0s ...
- 2 years agoHere are my notes to convert currency. I think this was courtesy of Your QuickBase Coach.
var number Currency = [Currency Field] ;
var text FormattedNumber =
"$" &
ToFormattedText($Currency,"comma_dot",3) &
If(
not Contains(ToText($Currency),"."), ".00",
Length(Right(ToText($Currency),"."))=1,"0"
);
$FormattedNumber
------------------------------
Mike Tamoush
------------------------------