Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have some fields in my list box,Those are like cricketes names. so now i want expression for max runs batsman and min runs batsman..how to write a set analysis expression ...?
Thanks In advance
If you already have aggregated Runs scored by cricketer, then try this
Max runs batsman
Firstsortedvalue(CricketerName,-Runs)
Min runs batsman
Firstsortedvalue(CricketerName,Runs)
Hi anbu,
i dont want like that ...i want like set analysis experssion...
=MaxString({<Runs={'$(=Max(Runs))'}>}CricketerName)
=MinString({<Runs={'$(=Min(Runs))'}>}CricketerName)