@TasBob,
1. Another user had contacted me for a somewhat similar request for finding 2 digits and this is how I modified that formula for him:
"put the 2 digit number in cell K1 and the following formula in cell B1 and copy and paste as far down in the B column as your data in the A column goes.
=IF(LEFT(TEXT(A1,"000"),2)=TEXT($K$1,"00"),"TRUE "&TEXT(A1,"000"),IF(LEFT(TEXT(A1,"000"),1)&RIGHT(TEXT(A1,"000"),1)=TEXT($K$1,"00"),"TRUE "&TEXT(A1,"000"),IF(RIGHT(TEXT(A1,"000"),2)=TEXT($K$1,"00"),"TRUE "&TEXT(A1,"000"),"")))
This will match 2 digit value in cell K1 with the leftmost 2 digits, or the rightmost 2 digits, or the leftmost single digit and the right most single digit of the 3 digit number in any of the A cells that have matches. I wasn't sure if you wanted a combined first and third digit match or not.
if you have 33 in K1 it will match A cell values of 330, 033, 303, etc. (and 333 which seems to be a triple match)"
2. Please clarify what you mean by "all 3 in box position" with an actual example.
Thanks,
Ed S.