Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
The required calculation is
Flow% = Sum(A) for the current Year / sum(B) of the previous year.
Can you please help me in acheving this keeping Year as Dimension. How can i acheive this in a Pivot table.
Flow% = Sum(A) of Tn / sum(B) of T(n-1)
May be this:
Sum(A)/Above(Sum(B))
Or even better, try this:
Sum(A)/(Above(Sum({<Year>}B)) * Avg(1))