184k views
0 votes
You have been using a variety of nested IF functions to calculate costs in your spreadsheet when a colleague stops by and comments on what you have been working on, suggesting that there is an easier approach to use.

You implement the VLOOKUP formula at your colleague’s suggestion, but you get the #VALUE! error as the result of the formula. Which of the following is likely true?
a. You might have entered a table name for the table_array value instead of the cell reference of the lookup table.
b. You might have indicated that the compare values are a range of values instead of an exact match.
c. You might have entered a number for the col_index_num instead of a letter.
d. You might have entered a letter for the col_index_num instead of a number.

User Rockfight
by
5.3k points

1 Answer

3 votes

Answer:

d. You might have entered a letter for the col_index_num instead of a number.

Step-by-step explanation:

The answer is the option d.

In the col_index_num, we have to provide of the column number we want to refer to. In case some letter is typed by mistake, it will give an error.

An argument col_index_num of 1 returns the value in the first column; a col_index_num of 2 returns the value in the second column in table_array, and so on.

Excel returns an error value if the argument is a text, as well as if it is less than 1 or greater than the number of columns.

User Pavel Ryzhov
by
6.3k points