Number Rounder (Standard String) Removing Thousands Separator

You can also do it with a java call using this String Manipulation “hack”:

string(
new java.text.DecimalFormat(“#,##0.00”).format($column1$)
)

2 Likes