google sheets - MIN value excluding values lower then a value in another cell - Stack Overflow

admin2025-04-27  3

So, I have something like this in the table. I need MIN value from Column A, but exclude values lower then B1 cell. So 5, 13, 14 are lower then 16, and result of the formula should be 34, the lowest value of the remaining values

Row A B
1 5 16
2 13
3 76
4 34
5 14
6 104

So, I have something like this in the table. I need MIN value from Column A, but exclude values lower then B1 cell. So 5, 13, 14 are lower then 16, and result of the formula should be 34, the lowest value of the remaining values

Row A B
1 5 16
2 13
3 76
4 34
5 14
6 104
Share Improve this question asked Jan 11 at 13:20 smooth operatorsmooth operator 711 gold badge1 silver badge8 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 2

You may try:

=minifs(A:A,A:A,">"&B1)

Try this as an alternative

This formula is preferred to use with conditional logic

=ARRAYFORMULA(SMALL(IF(A:A > B1, A:A), 1))

Expected Result

A B C
5 16 34
13
76
34
14
104

Reference

  • IF
  • SMALL
转载请注明原文地址:http://anycun.com/QandA/1745710053a91142.html