Hi,
I need to take the min or max of some returned if-then results, but I really need some of those if-then returns to be ignored so that the min or max result makes sense.
MIN(IF(hub!$F120=1,hub!G120,(10^10)),IF(bedplate!$F120=1,bedplate!G120,(10^10)))
I put in the (10^10) so that any competing and valid if-then returns will win. And then it makes sense. But if all if-then returns are (10^10), I really don't want the result to be 10^10. I could wrap the whole MIN in another if-then checking if the result is 10^10, and then replace it with something else, but then I have to double the size of the equation (the min is way longer than that).
Can i get an if-then that returns either a valid result, or a null that doesn't mess up min?
Thanks!
I need to take the min or max of some returned if-then results, but I really need some of those if-then returns to be ignored so that the min or max result makes sense.
MIN(IF(hub!$F120=1,hub!G120,(10^10)),IF(bedplate!$F120=1,bedplate!G120,(10^10)))
I put in the (10^10) so that any competing and valid if-then returns will win. And then it makes sense. But if all if-then returns are (10^10), I really don't want the result to be 10^10. I could wrap the whole MIN in another if-then checking if the result is 10^10, and then replace it with something else, but then I have to double the size of the equation (the min is way longer than that).
Can i get an if-then that returns either a valid result, or a null that doesn't mess up min?
Thanks!