Hello,
<tbody>
Column 1
Column 2
Column 3
B
1
24
A
2
22
A
2
28
C
1
21
B
2
18
A
2
32
A
1
20
</tbody>
Say if I have 3 columns as above, I want to get the minimum value of column 3 among the matching sets in column 1 AND 2 only. i.e. result should only get 22 (min. of A-2)
Any...