Pregunta

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?

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top