I am trying to format currency without the "$" in the beginning of the currency format.
How would I do this? I've tried this but it doesn't work:
Format(e.Row.Cells(7).Text, "{0:n}")
I know that $1,234 is:
Format(e.Row.Cells(7).Text, "Currency")
But I am trying to remove the
$
in front of the currency.