• Hi zoom19,

    I don't think there's an actual need to create custom code. I put the same logic into my reports using the following textbox expression:

    = "Facility: "

    + iif(Parameters!facilityGroup.Count = countrows("dsFacilityGroup")

    , "All"

    , iif(Parameters!facilityGroup.Count > 5

    , format(Parameters!facilityGroup.Count) + " of " format(countrows("dsFacilityGroup")) + " selected"

    , join(Parameters!facilityGroup.Label, ", ")

    )

    )

    Hope this helps.

    Kind regards,

    Linda