Forum Discussion
QuickBaseCoachD
6 years agoQrew Captain
This tested OK to do background shading and drop the decimals
var number Price = Round([Annual Surcharge Total]) ;
var text FormattedNumber =
"$" &
ToFormattedText($Price,"comma_dot",3);
"<div style=\"background-color:pink;\">"& $FormattedNumber &"</div>"
var number Price = Round([Annual Surcharge Total]) ;
var text FormattedNumber =
"$" &
ToFormattedText($Price,"comma_dot",3);
"<div style=\"background-color:pink;\">"& $FormattedNumber &"</div>"