SSRS: Diagram: Cumulate Values into new field

  • Hi there I'm currently using this Diagramm to Show percentages of Invoice Amount by Customers for my Company. (Picture below filters out Values that are under 4%)

    now since i have a lot of Customers that take less than 4%, i was hoping it could be possible to cumulate them all into a Collective Company called "Others" I'm Using SQL Server Reporting Services 2012.

    Does anybody know how this is done ? Many thanks to you all.

  • Using the chart you have at present (with the filter / dataset parameter removed).

    Set the following SSRS expressions : (guessing the column names but you will get the gist)

    Group on and label for the category groups :

    =iif(Fields!ValueToShow.Value<4, "Accumulated smaller segments", Fields!NormalGroupingName.Value)

    Fitz

  • Thanks a lot 🙂

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

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