Tuesday 4 April 2017

Excel - Microsoft Excel Lookup Function

Description

The Excel Lookup function has two forms - the Vector form and the Array form. These are described individually below. 

The Vector Form of the Excel Lookup Function
The vector form of the Lookup function 'looks up' a value in a data vector (ie. a 1-dimensional list of data) and returns the corresponding value from a second data vector. 

The format of the function is : 

LOOKUP( lookup_value, lookup_vector, [result_vector] ) 


Where the arguments are as follows : 

Example of the Vector Form of the Excel Lookup Function
In the spreadsheet below, cells A1-E3 relate to a variable interest rate, that is paid on a bank account. For balances of 0-$999.99, the interest rate is 3%, for balances of $1000-$1,999.99, the interest rate is 4%, etc. 

Cell A6 of the spreadsheet shows the balance of a specific bank account and cell B6 shows the vector form of the Excel Lookup function being used to look up the interest rate relating to this balance. 


The Lookup function in cell B6 of the above spreadsheet returns the interest rate of 5%, which is the correct interest rate to apply to a bank account with a balance of $45,000. 
In this example: 

-    the lookup_value is the value $45,000.00, which is located in cell A6
-    the lookup_vector is the vector of data in cells B1-E1 of the spreadsheet
-    the [result_vector] is the vector of data in cells B3-E3 of the spreadsheet. 

Note that the vector form of the Excel Lookup function can be used with any two arrays of data that have one-on-one matching values. For example, two columns of data, two rows of data, or even a column and a row would work, as long as the lookup_vector is ordered (alphabetically or numerically), and the two data sets are the same length. 

The Array Form of the Excel Lookup Function
The array form of the Lookup function 'looks up' a supplied value in the first column or row of a supplied data array (ie. a 2-dimensional table of data) and returns the corresponding value from the last column or row of the array. 

The format of the function is : 

LOOKUP( lookup_value, array ) 

Where the arguments are as follows : 

Example of the Array Form of the Lookup Function
In the spreadsheet below, columns A-C list the grades that are assigned to examination marks lying within the ranges 0-44%, 45%-54%, etc. 

Cell F2 shows the score of 82% that was achieved by the student "Chris" in an examination. The Lookup function in cell G2 looks up this score in column A of the spreadsheet and returns the associated grade from column C. Note that, in this example, if the exact score of 82% is not found in column A, we want the function will use the nearest value below this score. 


The above Lookup function returns the grade for the score 82%, which is B
In this example: 
-    the lookup_value is the value 82%, which is located in cell F2
-    the array is the vector of data in cells A2-C7 of the spreadsheet. 

Note: In this example, the Excel Lookup function recognised that it was searching for the lookup_value in the first column of the supplied array, and returning a value from the last column. However if the array is transposed so that the data runs across 3 rows, the function will recognise this, and will still return the correct values. 


Excel Lookup Function Errors
If you get an error from the Excel Lookup function this is likely to be the following : 

Common Errors 


Also, the following problem is encountered by some users: 
Common Lookup Problem 

Your Excel Lookup function is returning the wrong value 

Possible Reason No. 1 

This problem may arise if the data in the lookup_vector or in the first row or column of the supplied array, is not ordered, (alphabetically or in ascending numerical order). 

Solution No. 1 

Try ordering the data by the lookup_vector (for the vector form of the function) or, if using the array form of the function, order by the first row or column of the supplied array. If your data is organised into columns rather than rows, the ordering can be done using the Sort... option in the Data menu. 

If your Excel Lookup function still returns the wrong result, check that your supplied lookup range(s) contain ONLY the data you want to search. (eg. if you have used the whole of columns A-C as a supplied array, change this to omit your headings and also to omit any other data that might be further down the spreadsheet). 

Possible Reason No. 2 
You may have unseen spaces at the start or end of either the value you are looking up, or in the cells of your lookup_vector or array. These spaces cause your lookup_value cell and the 'matching' cell in your lookup_vector or table_array to have slightly different content. 

Solution No. 2 
Check the contents of the cells that you believe should match. If there are unseen additional spaces in one or both of the lists, remove these using the TRIM function: 


Possible Reason No. 3 
The contents of the cells that are being compared may have different data types. For example, the cell containing your lookup_value may be stored as a number by Excel, whereas the values in your table_array may be stored as text even though they look like numbers. 

Solution No. 3 
Force both sets of data to have the same type. For example, if you want both sets of values to be stored as numerical values, convert both sets of data to numbers, using Excel's Text To Columns tool: 


Note that you could have chosen to convert the contents of your cells to text, by simply selecting the column data format Text in the Text To Columns tool. 
Once you have ensured that your data has the correct type, check again that it is ordered correctly. This is important because Excel uses different ordering rules for text strings made up of numbers, compared to those used for numerical values. 

Possible Reason No. 4 
You may not actually require the function to return a closest match - you may only want a result if an exact match is found. In this case, the Excel Lookup function is not the correct function to use. 

Solution No. 4 
Try using the Vlookup Function or the Hlookup Function instead! 







































































No comments:

Post a Comment