Help whit a Format expression

  • I have a problem whit the following expression:

    =Format(Fields!Porcentaje.Value, "##.##") & "%"

    When the field value is 0,34% it doesnt show the 0, it shows like ,34%

    what can it be?

    thank you for any help

  • Use a zero instead. 0 shows the number or 0 if there isn't one, # shows the number or nothing...

    =Format(Fields!Porcentaje.Value, "#0.##") & "%"

    -Luke.

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • Thank you! it works perfectly...

  • You're welcome!

    Glad it worked for you.

    -Luke.

    To help us help you read this[/url]For better help with performance problems please read this[/url]

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply