Re: Using drop down menus to auto populate data in another cell
Hi Montanaman
The Formula in B2 would be the following in your case
=VLOOKUP(A2;Sheet2!A:B;2;0)
The syntax of the VLOOKUP goes like this:
=VLOOKUP(lookup_value;table_array;col_index_num;[range_lookup])
Which can be translated into layman's terms as follows:
- lookup_value: This is what you want the formula to look for (ie. Bobs)
- table_array: This is the range in which you want the lookup to look for this value. Note that whatever you are looking for must be located in the first column of the range in order for the lookup to work-
- col_index: This number relates to the column in the specified range from which you want to retrieve the value.
- [range_lookup]: This is an optional parameter, you can specify it to be TRUE (or 1), or FALSE (or 0). True means that it will look for an approximative match. I have specified false so that you receive an exact match.
HTH
Regards
Attila