Hi Everyone,
In Analytic view, for the calculation of the formula CAGR https://en.wikipedia.org/wiki/Compound_annual_growth_rate,
Created a calculated column "CAGR", I have divided the Revenue of the current year by Revenue of 3 years ago and rounded the values as follows:
if ("REVENUE_3" = 0, 0, round((REVENUE_0"/"REVENUE_3"),0))
And, maintained with Data type: Integer, Column type: Measure
And I have not checked Calculate Before Aggregation
The values from the "CAGR" calculated column satisfies the calculation requirement.
After that I have created a new calculated column "CAGR_FIN" and given the formula as follows:
("CAGR")^(1/4)
And, maintained with Data type: Integer, Column type: Measure
And I have not checked Calculate Before Aggregation
The issue is the values of "CAGR_FIN" are giving as 1 for all the values (including zeroes) except for Null with respect to Customer (Attribute) drill down. And this is not satisfying the requirement.
I have checked the few threads, but could not get the details for "to the power of" operator.
Please suggest if I have missed any steps.
Regards,
Nachappa