I am using Basic Syntax.The following simple formula:formula = "My Number: " & Round(1234.56,0)yields:My Number: 1,235.00The Round function is rounding to zero decimals but also auto-formatting the result to add a comma and display two decimal places...