Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
How can I display the rank in a text box of a selected value from a list box ?
Suppose I have this input data
Id Value
1 100
2 10
3 500
If I selectec Id=1 I want to display in the text box Rank = 2
Regards
JJ
Try
= 'Rank = ' & aggr( if(d=GetFieldSelections(Id),rank(sum({1} Value))),Id)
Try
= 'Rank = ' & aggr( if(d=GetFieldSelections(Id),rank(sum({1} Value))),Id)
Thanks Stefan
It works also without the GetFieldSelection :
= aggr( rank(sum({1} V)),Id)
JJ