Вопрос

I have lists of names and initials in separate columns, matched by row:

*NAME*                      *Signature*
Alexis Petros                   A. P.
George Kalioris                 G. K.

and have created a drop down list of names. I want another cell to display the initials associated with the name chosen in the dropdown.

How is that possible?

Это было полезно?

Решение

If your dropdown is say in A1 based on a list of names say in ColumnL and initials in matching rows in say ColumnM then a formula such as:

=VLOOKUP(A1,L:M,2,0)  

should serve.

SO21297227 example

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top