Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
There is a way to show only the top ten values in a Pivot Table?
I want the top ten (and bottom ten) based in Open Rate
Thanks!
May be like this
If(Rank(if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))) < 11, if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered)))
And do this for all other expressions
If(Rank(if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))) < 11, Expression2)
If(Rank(if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))) < 11, Expression3)
Note that if condition stays the same, just the expressions changes
May be using Rank function on OpenRate to show only those rows which are top 10 and bottom 10
Hi stalwar1,
I'm sorry but I don't know how to use this function, I tried a few combinations, but with no result.
My original formula is: if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))
Could you help me?
May be like this
If(Rank(if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))) < 11, if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered)))
And do this for all other expressions
If(Rank(if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))) < 11, Expression2)
If(Rank(if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))) < 11, Expression3)
Note that if condition stays the same, just the expressions changes
Or this as calculated dimension and tick the suppress
Aggr(If(Rank(sum(UniqueOpens)/sum(TotalDelivered), 4) <= 10, ..), .., ..)
It works!
Thank you very much!
And the bottom ten?
I'm trying something like that:
If(Rank(if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))) > count(total TotalSent) - 10, if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered)))
But of course, is not working
Something like this
If(Rank(-if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered))) < 11, if(sum(TotalSent) >= 50,sum(UniqueOpens)/sum(TotalDelivered)))
Note the negative sign after Rank(.... function.... this is to get the rank from the bottom....
You're an ACE!
Thanks!