Report Builder Role

  • Report Builder

    I have a parameter named Role whose values are coming from a query which are about 100.

    I would like to see the filtered in the report so I kept an expression like

    =Join(Parameters!Role.Label, ", ") which displays all the 100 looking akward.

    Wonder if there is any way to keep it as Unfiltered and If few roles are selected display those few.

  • You can use something like this:

    Note: DummyMVParam is a multi-value parameter in my report.

    so this is what my test is doing:

    If there are less than 4 values selected from the multi-value parameter, show the values in a comma-separated list, otherwise show "lots o values".

    =IIF(Parameters!DummyMVParam.Count<4,JOIN(Parameters!DummyMVParam.Value,", "),"lots o values!")

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

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