Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i have to obtain the most repeated value in a field. For example :
LOAD * INLINE [
Value
1
2
3
3
4
4
4
5
];
The most repeated value is 4. Anyone know how to do it?
Thanks in advanced
Check for a script based example here:
Try with Mode function may be
Mode(Value)
Check for a script based example here:
Mode() should do the trick!
Great!! thanks Sunny, i lost many time trying with the funcion "for" and "if"