Como mencionado por Máté Juhász, =VLOOKUP
pode ser usado com algumas mudanças de dados. Do KB no vlookup
Sintaxe - VLOOKUP (lookup_value, table_array, col_index_num, [range_lookup])
range_lookup (optional)
A logical value that specifies whether you want VLOOKUP to find an exact match or an approximate match:
TRUE assumes the first column in the table is sorted either numerically or alphabetically, and will then search for the closest value. This is the default method if you don't specify one.
FALSE searches for the exact value in the first column.
Então, se você classificar pela coluna J e fizer um vlookup com TRUE
, deverá obter o que precisa.
Portanto, a coluna E teria algo como =VLOOKUP((LEFT(D3,2)),$J$5:$K$19,2,TRUE)