lables in ssrs

  • How i can display two values in same label.but i want to show second value in bracket().i am using this expression

    =round(Fields!MegaBytes.Value,0).ToString() & " " & (round(Fields!MBPerSub.Value,0).ToString())

    it is giving me proper result.but second value(MBpersub) is not diplaying in bracket().

    for e.g: 400 (55555).

  • You have not coded for the brackets to be displayed. Brackets has to be part of the Expression.

  • try this

    =round(Fields!MegaBytes.Value,0).ToString() & " (" & (round(Fields!MBPerSub.Value,0).ToString()) & " )"

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

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