Finding Minimum
Hello All,
Here I need to find Minimum of values in Expansion. But I dont need zero to be minimum.
Existing | Expansion |
14 | 0 |
16 | 18 |
18 | 20 |
20 | 22 |
22 | 24 |
34 | 0 |
1400 | 0 |
0 | 0 |
Please help in finding the minimum. Suggest the function for the same.
Regards,
Jeevan
Tagged:
1
Best Answer
-
You can use RANK()
e.g. Rank = RANK(Expansion, ASCENDING, , Expansion > 0)
Minimum can be found if rank = 1
1
Answers
-
use minimum is ok
0 -
But I need that minimum value to flow into other module....
0 -
You can add a line item "Minimum Expansion" with a formula
If Rank = 1 then Expansion else 0
Does it help?
0