Forum Discussion
soubhik
5 years agoHelper I
How to create a non-zero/non-blank minimum across multiple columns?
How to create a non-zero/non-blank minimum across multiple columns? So, the sample data and expected minimum is: A|B|C|D|E|Min 1|0|4|2|3|1 2|3|5| |1|1 2| |0|5|1|1 I already tried nested ...
- 5 years ago
Add the following calculated column to your table:
MinColumn = MINX( FILTER({[A],[B],[C],[D],[E]},[Value] > 0 ),[Value] )________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply š
Fowmy
5 years agoSuper User
Add the following calculated column to your table:
MinColumn =
MINX( FILTER({[A],[B],[C],[D],[E]},[Value] > 0 ),[Value] )
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply š