2003|Excel|VLOOKUP

Joined
Dec 10, 2008
Messages
7
Reaction score
0
hello I need help on Excel...
The VLOOKUP function will not find the correct value it will instead pick a completely different value off my table.
Please help.
 
Joined
Dec 13, 2008
Messages
3
Reaction score
0
the VLookup function searches for value in the left-most column of table_array and returns the value in the same row based on the index_number. The syntax for the VLookup function is:
VLookup( value, table_array, index_number, not_exact_match )



value is the value to search for in the first column of the table_array.


table_array is two or more columns of data that is sorted in ascending order.

index_number is the column number in table_array from which the matching value must be returned. The first column is 1.

not_exact_match determines if you are looking for an exact match based on value. Enter FALSE to find an exact match. Enter TRUE to find an approximate match, which means that if an exact match if not found, then the VLookup function will look for the next largest value that is less than value.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top