Thanks to everyone who has contributed to this topic thus far. Many creative solutions that are working quite well. You should pat yourselves on the back.
I have what I believe one final use case & solution request.
I would like to take this solution one step further. I would like to do the same find MIN value of alphanumeric value from a data set as before, but this time reference a "SPECIFICATION #" value in which to lookup prior to returning a value.
In other words - the user inputs a value for a SPECIFICATION # in cell D2, and the calculated value for E2 is the MIN alphanumeric value for all SPECIFICATION #s matching the value in D2. In the use case below, the user inputs "4" for SPECIFICATION #. The calculated value for E2 is P1 because for all SPECIFICATION # values equal to "4" (P3, P2, P1) the MIN value of those returned is P2 because
both P3 and P1 are on the exclusion list.
Data Set:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]SPECIFICATION #[/TD]
[TD]VALUES[/TD]
[TD][/TD]
[TD]SPECIFICATION #[/TD]
[TD]RESULT[/TD]
[TD]EXCLUSION LIST[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1[/TD]
[TD]COMP EVAL[/TD]
[TD][/TD]
[TD]4[/TD]
[TD]P2[/TD]
[TD]P5[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1[/TD]
[TD]P5[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]COMP EVAL[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]1[/TD]
[TD]P2[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]P1[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]2[/TD]
[TD]P4[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]P3[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]2[/TD]
[TD]P4[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]2[/TD]
[TD]P3[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]3[/TD]
[TD]PROTOTYPE[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]3[/TD]
[TD]P5[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]3[/TD]
[TD]P1[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]11[/TD]
[TD]4[/TD]
[TD]P3[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]12[/TD]
[TD]4[/TD]
[TD]P2[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]13[/TD]
[TD]4[/TD]
[TD]P1[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]14[/TD]
[TD]5[/TD]
[TD]COMP EVAL[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]15[/TD]
[TD]5[/TD]
[TD]P2[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]16[/TD]
[TD]5[/TD]
[TD]P1[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Who is up for this challenge? Thanks in advance for your time spent looking into this challenge.