Keeping (or adding) decimal places when converting number to text...
I'm working with multiple currencies and trying to combine them into a single field (I realize this won't allow me to have a total due to the fact they're converting to text in order to maintain currency symbol), but I can't find a way to make everything go to 2 decimal places. Whole numbers appear as whole numbers, while decimal places are displaying as many as 4. My formula is below... any help I could get would be appreciated...
If([Client - Address: Country2]="United Kingdom", List("", "?", ToFormattedText([CC Proposed - GBP],"comma_dot")), [Client - Address: Country2]="United States", List("", "$", ToFormattedText([CC Proposed - USD],"comma_dot")), [Client - Address: Country2]="France", List("", "?", ToFormattedText([CC Proposed - EUR],"comma_dot")),null)