Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Frnz,
Please help me. I would like display Top 10 values. But I am getting all values. Please find the attached QVW.
Use Pivot Table
Dimension
1) YEAR
2) Calculated DImension
=AGGR(IF(Rank(SUM(ULT_REVENUE),4)<=10,L4ACCTNAME),YEAR, L4ACCTNAME)
TICK SUPPRESS WHEN VALUE IS NULL
Expression
Whatever you want
Hi,
Use Rank()
Search in Community,
Top 10 using Rank()
Regards,
The top 10 What of What?
goto --dimeniosn limits tab--
see below,
YEAR wise Top 10 and I need to show Account name also in Pivot table
In Pivot table, no dimension limits tab
then u can use the rank function on ur expression.
some thing like this..
=Sum(Aggr(if(Rank(Sale)<=10,on-whichever the field ur calulcating fro example sales),Account name,Sale))
Use this as calculated Dimension instead of L4ACCTNAME
=AGGR(IF(Rank(SUM(ULT_REVENUE),4)<=10,L4ACCTNAME),YEAR, L4ACCTNAME)
Tick suppress when value is null
I will try..Thanks