How to Customize Total Row Count Values

Hi

I would like to customize total row count formula only for specific columns.

I have two columns,
Formula looks like this:
total row count of 2nd column(%)=1st column/2nd column

Thanks in advance,
Swapna

Hi @Swapna_R

There are ways to approach the Total row separately and change the calculation steps depending on the report rows.
But it would very much depend on the dimension we use in rows.
If you use the ā€œIssueā€ dimension you could try this approach when creating a new calculated measure.

Case WHEN
[Issue].CurrentHierarchyMember.name = '$total_aggregate'
THEN
[Measures].[Issues resolved]/ [Measures].[Issues created]
ELSE
[Measures].[Issues created]
END

Martins / eazyBI team

1 Like

Thanks martin,

I tried above suggested formula. It didnā€™t worked for me.

My report looks like this:
i would like have customized total row formula.

ex: for Requirement Complete column
total row value=Requirement complete/Planned
similarly for Dev Completion column
total row value=Dev Completion/Planned


Is it possible to achieve this?

Thanks in Advance

Regards,
Swapna

Hi @Swapna_R

Could you please share the formula you tried?
Have you used the ā€œHD_Releaseā€ dimension members in the code?

Martins / eazyBI

This is the formula I tried but for each total row formula need to be customized as mentioned above.

image

Regards,
Swapna

@Swapna_R

Note the difference between your report and mine.
If you use ā€œHD_Releaseā€ dimension in report rows, you canā€™t use [Issue].CurrentMember.name anymore.
You would need to use [HD_Release].CurrentMembername = ā€˜$total_aggregateā€™ in the formula.

Martins / eazyBI

Iā€™m sorry to bring up again such an old post but Iā€™m new to eazyBI and Iā€™m trying to follow along. I have a similar need as described by the OP, meaning I need columns to be summed, but one of them should use a custom formula.

Reviewing your answer I see youā€™re comparing [Issue].CurrentHierarchyMember.name to $total_aggregate, but I donā€™t understand where $total_aggregate comes from. TIA!

@BiNoob
If you use ā€œIssueā€ dimension in report rows, you can use $total_aggregate condition to find the ā€œTotalā€ row on the report.
Total_aggregate is the member that shows ā€œTotalā€ row when this feature is enabled.

Martins / eazyBi