reporting services - Show percentages in SSRS without "%" character -
i have graph in ssrs report shows percentages. achieved putting format value of 0.0%
. database contains fraction values 0.1
, 0.15
formated 10%
, 15%
automatically. business guys don't want the "%" sign show.
i can't figure out how multiple number 100 in format expresion. think i'm in on of block moments.
is simple as:
=fields!yourfield.value * 100
or perhaps
=format(fields!yourfield.value * 100, 0.0)
Comments
Post a Comment