Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Just like the subject, I have data like below:
The result that I want is :
Thanks in advance.
I want to make it in the back-end script, you can use the attachment to be a sample.
Aiolos
You can use the rangemin function:
LOAD ID, RangeMin(V1,V2,V3,V4) as MINVALUE FROM ...source data...;
You can use the rangemin function:
LOAD ID, RangeMin(V1,V2,V3,V4) as MINVALUE FROM ...source data...;
I agree with Gysbert, RangeMin is the best solution.
You also can use it as expression in the table
RangeMin(V1,V2,V3,V4)