TypeList is an array. When I fill the array starting at column D the first Type will go into row #1. However, I'm starting the number search in sheet column D (i.e. column #4). I wanted to use the column number of the found string to return the Type from the array. So I could have subtracted 3 from the found column to get the correct array row number. Since I chose to fill the TypeList starting with Column A, the array row corresponds to the column of the found numberstring without the subtraction.
There would only be a small change in the code:
TypeList = .Range("A4:AB4").Value would change to TypeList = .Range("D4:AB4").Value
and
.Range("D11").Value = TypeList(1, NumStr.Column) would change to .Range("D11").Value = TypeList(1, NumStr.Column-3)
Doing it without the array for the types:
If you want to search by columns you need two loops (something like):
Bookmarks