asp.net - Formatting A Textbox's Expression to Currency Format in ReportViewer -
i'm doing report need convert expression dollar currency. how convert dollar currency programmatically, not on formatting using placeholder properties dialog box , changing on number section.
say example i'm concatenating text "total" the amount.
e.g.
total $140.00 when did expression:
= "total " & fields!amt.value it turns out this:
total 140 i want include text "total" , format dollar currency.
you can try following solution:
="total " & format(fields!amt.value, "c")
Comments
Post a Comment