Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi to experts,
I have 10 records now i want top 4th record how to write a set expression for that?
Like this:
Max(Aggr(SUM(Sales),Customer),4)
Hi,
Please clearify
top 4th reult means 4th Row or 4th highest among all
Fourth highest customer
=If(Rank(Aggr(SUM(Sales),Customer))=4,Customer)
Hi.
4th highest among all
If you want Customer having 4th Highest Value, you need to use as below
=FirstSortedValue(Customer, -Aggr(SUM(Sales),Customer),4)
Hi,
Please try this expression
If(aggr(rank(SUM(Sales),Customer))=4,Customer)
samples
try this
if(aggr(rank(expression),dimension)<=4,dimension)