Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Frnz,
I would like to show Top 1 sum(count) based on Sum(Downtime) aggregate of code.
Please find the attached Qvw. Please help me to find this.
Maybe like
=Only ( aggr(If( Rank ( Sum ( Downtime ))=1, Sum(COUNT)) ,code) )
Maybe like
=Only ( aggr(If( Rank ( Sum ( Downtime ))=1, Sum(COUNT)) ,code) )
Try this:
=FirstSortedValue(Aggr(Sum(COUNT), code), -Aggr(Sum(Downtime), code))
Hi ,
Thanks to All.. Both Expressions Working ..Thank you ..