Search Flashcards

1
Q

2

x-lookup

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

vlookup

A

Use VLOOKUP when you need to find things in a table or a range by row. For example, look up a price of an automotive part by the part number, or find an employee name based on their employee ID.

In its simplest form, the VLOOKUP function says:

=VLOOKUP(What you want to look up, where you want to look for it, the column number in the range containing the value to return, return an Approximate or Exact match – indicated as 1/TRUE, or 0/FALSE).

think of this tool like a search engine

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

h-lookup

A

HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

Searches for a value in the top row of a table or an array of values, and then returns a value in the same column from a row you specify in the table or array. Use HLOOKUP when your comparison values are located in a row across the top of a table of data, and you want to look down a specified number of rows. Use VLOOKUP when your comparison values are located in a column to the left of the data you want to find.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

match

A

MATCH(lookup_value, lookup_array, [match_type])

The MATCH function searches for a specified item in a range of cells, and then returns the relative position of that item in the range.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

index

A

The INDEX function returns a value or the reference to a value from within a table or range.

INDEX(array, row_num, [column_num])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

differences between x and v lookup

A

XLOOKUP and VLOOKUP are both Excel functions used to search for data in a spreadsheet, but they have several key differences:
Search direction
XLOOKUP can search for values to the left and right of the lookup array, while VLOOKUP can only search to the right.
Exact match
XLOOKUP returns exact matches by default, while VLOOKUP may return approximate matches if an exact match isn’t found.
Error handling
XLOOKUP can customize text when a match isn’t found, while VLOOKUP only displays an #N/A error.
Return multiple values
XLOOKUP can return multiple values at once, while VLOOKUP can only return one value at a time.
Lookup array and return array
XLOOKUP uses a lookup array and a return array, while VLOOKUP uses a single table array and a column index number.
Search mode
XLOOKUP allows you to specify a search mode, such as starting at the top or bottom of a table, while VLOOKUP can only start at the top.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly