So say i have these numbers : 50, 100, 40, 0, 0, 20
I want to use min(50, 100, 40, 0, 0, 20) to get the lowest number, but i don't want it to return any of the zero values. Thus the result should be 20.
Any ideas how i would achieve this in C2? In normal coding this is quite easy but i'm drawing a blank in C2.