• This is a common requirement, to calculate the percentage of total given a list of values.

    The normal calculation would be : Percentage of Total = ThisValue / Total

    Your calculations look strange as the Unknown value is included twice (once in the total and once where you use the Unknown+Total as the divisor).

    Given the normal requirement in a matrix (columns are Date, Metric and Value).

    1. Add the matrix to the report as normal (gives 2 by 2 grid)

    2. Drag the Date column onto the first row, second column. This will repeat for each date and gives a column group called Date which will be used later.

    3. Drag the Metric column onto the second row, first column. This will repeat for each metric and gives a row group called Metric.

    4. Drag the Value column on the second row, second column. The expression will be

    =SUM(Fields!Value.value)

    5. Test the report shows the values in the correct way.

    6. In design mode, right click the Value cell and choose to Insert Column inside group to the right. This will be the cell for the percentage.

    7. Right click the new cell and choose to add an Expression, as below. This would give the total for the complete Date (refers to the column group name).

    =SUM(Fields!Value.value) / SUM(Fields!Value.value, "Date")

    8. Format the cell to percentage.

    9. Right click the Date column heading and choose to Insert Row inside group below. Split the new cell that is created. Name the headings Value and Percentage.

    Done

    Fitz

    (Measure and Percentage.txt is a example RDL)