I'm trying to build an Excel user defined function VLOOKUP_NAME(value, table, column_name) that would implement:
VLOOKUP(value, table, MATCH(column_name, table[#Headers], FALSE), FALSE)
How do I do this in VBA? VBA doesn't seem to accept structured references like table[#Headers].
Also, I'd be interested in knowing about the performance consequences of implementing this as a UDF as well.
Also, the reason I'm doing this is to replace a ton of ugly formulas with more readable formulas. Other better suggestions to achieve this are welcome.
table[#headers]might beArray("headerA","headerB","headerC")in VBA – Tim Williams Jul 17 '12 at 14:59table[#Headers]? It's not valid VBA, so what is it meant to represent? – Tim Williams Jul 18 '12 at 5:36