Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
we all know that MAX function get the par as OFFSET then u can get the 2nd MAX number or other any postion object in list
but how about maxstring? if I want to get sepecil postion text, just as below.
list
text1
text2
text3
text4
text5
text6
I want to the return result as text2 or anyother that I want
thanks
Hi,
You can try like this
=Aggr(If(Rank(list, 1, 0) = 5, list), list) -- for getting the second min value
or
MinString({<list-={'$(=MinString(list))'}>}list) - for getting second min
Regards,
Jagan.
Hi,
You can try like this
=Aggr(If(Rank(list, 1, 0) = 5, list), list) -- for getting the second min value
or
MinString({<list-={'$(=MinString(list))'}>}list) - for getting second min
Regards,
Jagan.
yes, it work, thanks