Is there a built in FormatString or a way to use a custom FormatString to take:
$150.00
$1,170.00
$12,170.00
$90.00
$38.00
$750.00
And format them like:
$ 150.00 $ 1,170.00 $ 12,170.00 $ 90.00 $ 38.00 $ 750.00
without knowing the largest value? This is in a gridview boundcolumn I am currently in the codebehind on rowdatabound looping through the existing rows to get the largest and changing the current one if necessary or changing the existing ones if the current one is the largest, so I have a workaround but was hoping for a clean solution.