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
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
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
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.
Regards,
Swapna
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